Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
env:
# Update to desired major.minor. This is the base version family.
BASE_VERSION: "2.1"
PATH_SLNX: "source\\Lite.StateMachine.slnx"
PATH_SLNX: "Lite.StateMachine.slnx"
PATH_LIB: "source\\Lite.StateMachine\\Lite.StateMachine.csproj"
PATH_ARTIFACTS: ${{github.workspace}}\artifacts

Expand Down
File renamed without changes.
8 changes: 5 additions & 3 deletions source/Directory.Build.props → Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<LangVersion>latest</LangVersion>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>

<AssemblyVersion>2.3.1</AssemblyVersion>

<BaseOutputPath>../../output/$(MSBuildProjectName)</BaseOutputPath>
<Deterministic>true</Deterministic>
<Nullable>enable</Nullable>
Expand All @@ -25,9 +27,9 @@

<ItemGroup>
<!-- Detect stylecop analyzers-->
<AdditionalFiles Include="../stylecop.json" />
<AdditionalFiles Include="../../stylecop.json" />
<!-- https://github.com/dotnet/roslyn/blob/main/src/RoslynAnalyzers/Microsoft.CodeAnalysis.BannedApiAnalyzers/BannedApiAnalyzers.Help.md -->
<None Remove="../BannedSymbols.txt" />
<AdditionalFiles Include="../BannedSymbols.txt" />
<None Remove="../../BannedSymbols.txt" />
<AdditionalFiles Include="../../BannedSymbols.txt" />
</ItemGroup>
</Project>
File renamed without changes.
22 changes: 22 additions & 0 deletions Lite.StateMachine.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<Solution>
<Folder Name="/Samples/">
<Project Path="samples/Sample.Basics/Sample.Basics.csproj" Id="88e1e0a9-34b8-4610-a2f4-bfb36e0d1b43" />
<Project Path="samples/Sample.Mk4/Sample.Mk4.csproj" Id="f7481ec8-d3be-4acd-9eae-a4723c09e245" />
</Folder>
<Folder Name="/Solution Items/">
<File Path=".github/workflows/build-github.yml" />
<File Path="build.ps1" />
<File Path="readme-nuget.md" />
<File Path="readme.md" />
<File Path=".editorconfig" />
<File Path="codemaid.config" />
<File Path="Concept-Designs.md" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
</Folder>
<Folder Name="/Tests/">
<Project Path="source/Lite.Statemachine.BenchmarkTests/Lite.StateMachine.BenchmarkTests.csproj" Id="de19a850-9787-485a-b4d2-4620ca204969" />
<Project Path="source/Lite.StateMachine.Tests/Lite.StateMachine.Tests.csproj" Id="9644caac-1ac7-49b2-a502-896ca82f7b74" />
</Folder>
<Project Path="source/Lite.StateMachine/Lite.StateMachine.csproj" />
</Solution>
6 changes: 3 additions & 3 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ if (Test-Path -Path "output\")
}

# Clean both debug and release
dotnet clean source/Lite.StateMachine.slnx
dotnet clean source/Lite.StateMachine.slnx --configuration Release
dotnet clean Lite.StateMachine.slnx
dotnet clean Lite.StateMachine.slnx --configuration Release

# Build package for release
dotnet build source/Lite.StateMachine.slnx --configuration Release
dotnet build Lite.StateMachine.slnx --configuration Release

# Publish
Write-Output "Cleaning publish folder.."
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Lite.StateMachine\Lite.StateMachine.csproj" />
<ProjectReference Include="..\..\source\Lite.StateMachine\Lite.StateMachine.csproj" />
</ItemGroup>

</Project>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Lite.StateMachine\Lite.StateMachine.csproj" />
<ProjectReference Include="..\..\source\Lite.StateMachine\Lite.StateMachine.csproj" />
</ItemGroup>

</Project>
22 changes: 0 additions & 22 deletions source/Lite.StateMachine.slnx

This file was deleted.

1 change: 0 additions & 1 deletion source/Lite.StateMachine/Lite.StateMachine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<Title>Lite State Machine</Title>
<Description>Flexible lightweight finite state machine (FSM) for .NET supporting shared context for passing parameters, composite (sub) states, command states, lazy-loading and thread safe. Cross-platform and optimized for speed for use in enterprise, robotic and even tiny applications.</Description>

<AssemblyVersion>2.3.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<VersionPrefix>$(AssemblyVersion)</VersionPrefix>
<VersionSuffix></VersionSuffix>
Expand Down
File renamed without changes.
Loading