This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move state machine stuff to an extensions project
- Loading branch information
1 parent
71b6ca8
commit 96228d5
Showing
8 changed files
with
99 additions
and
6 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
GParse.Extensions.StateMachines.Tests/GParse.Extensions.StateMachines.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" /> | ||
<PackageReference Include="coverlet.collector" Version="1.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\GParse.Extensions.StateMachines\GParse.Extensions.StateMachines.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
GParse.Extensions.StateMachines/GParse.Extensions.StateMachines.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.1</TargetFrameworks> | ||
<CodeAnalysisRuleSet>RuleSet1.ruleset</CodeAnalysisRuleSet> | ||
<Authors>GGG KILLER</Authors> | ||
<Description>Parsing and lexing utilities to create your own parser and lexer</Description> | ||
<Copyright>GGG KILLER © 2020</Copyright> | ||
<PackageLicenseUrl></PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/GGG-KILLER/GParse</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/GGG-KILLER/GParse</RepositoryUrl> | ||
<RepositoryType>Git</RepositoryType> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Version>4.0.0</Version> | ||
<LangVersion>latest</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\GParse.xml</DocumentationFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
|
||
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB --> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link --> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="GUtils.StateMachines" Version="1.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\GParse\GParse.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="New Rule Set" Description=" " ToolsVersion="15.0"> | ||
<Rules AnalyzerId="CodeCracker.CSharp" RuleNamespace="CodeCracker.CSharp"> | ||
<Rule Id="CC0001" Action="None" /> | ||
<Rule Id="CC0020" Action="Warning" /> | ||
<Rule Id="CC0061" Action="None" /> | ||
<Rule Id="CC0062" Action="None" /> | ||
<Rule Id="CC0084" Action="None" /> | ||
<Rule Id="CC0105" Action="None" /> | ||
</Rules> | ||
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed"> | ||
<Rule Id="CA1001" Action="Warning" /> | ||
<Rule Id="CA1003" Action="Warning" /> | ||
<Rule Id="CA1011" Action="Warning" /> | ||
<Rule Id="CA1012" Action="Warning" /> | ||
<Rule Id="CA1013" Action="Warning" /> | ||
<Rule Id="CA1018" Action="Warning" /> | ||
<Rule Id="CA1019" Action="Warning" /> | ||
<Rule Id="CA1026" Action="Warning" /> | ||
<Rule Id="CA1027" Action="Warning" /> | ||
<Rule Id="CA1036" Action="Warning" /> | ||
</Rules> | ||
</RuleSet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters