Skip to content

Commit 9e4cfdb

Browse files
author
Nilay Vishwakarma
committed
fix versions
1 parent f407171 commit 9e4cfdb

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
dotnet-version: [ '8.0.x' ] # Add/remove versions as needed
18+
dotnet-version: [ '5.0.x', '6.0.x', '7.0.x', '8.0.x' ] # Add/remove versions as needed
1919

2020
steps:
2121
- uses: actions/checkout@v4

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"rollForward": "feature",
4+
"version": "8.0"
5+
}
6+
}

src/SharpFsm/SharpFsm.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.1</TargetFrameworks>
44
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
55
<PackageId>SharpFsm</PackageId>
66
<Version>1.0.0</Version>
77
<Authors>Nilay Vishwakarma</Authors>
8-
<Description>A flexible finite state machine library for .NET.</Description>
8+
<PackageDescription>A tiny finite state machine library for .NET.</PackageDescription>
9+
<Description>A tiny finite state machine library for .NET.</Description>
910
<PackageTags>fsm;state-machine;workflow;dotnet</PackageTags>
1011
<RepositoryUrl>https://github.com/iwannabebot/SharpFsm</RepositoryUrl>
1112
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -16,4 +17,7 @@
1617
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1718
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1819
</PropertyGroup>
20+
<ItemGroup>
21+
<None Include="icon.png" Pack="true" PackagePath="" />
22+
</ItemGroup>
1923
</Project>

0 commit comments

Comments
 (0)