diff --git a/global.json b/global.json new file mode 100644 index 0000000..067010d --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "10.0.102", + "rollForward": "latestFeature" + } +} diff --git a/samples/Basic/FunctionalStateMachine.Samples/FunctionalStateMachine.Samples.csproj b/samples/Basic/FunctionalStateMachine.Samples/FunctionalStateMachine.Samples.csproj index 7b85d3d..8b9cc93 100644 --- a/samples/Basic/FunctionalStateMachine.Samples/FunctionalStateMachine.Samples.csproj +++ b/samples/Basic/FunctionalStateMachine.Samples/FunctionalStateMachine.Samples.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable false diff --git a/samples/StockPurchaser/StockPurchaserSampleApp.Tests/StockPurchaserSampleApp.Tests.csproj b/samples/StockPurchaser/StockPurchaserSampleApp.Tests/StockPurchaserSampleApp.Tests.csproj index 664c03e..1521807 100644 --- a/samples/StockPurchaser/StockPurchaserSampleApp.Tests/StockPurchaserSampleApp.Tests.csproj +++ b/samples/StockPurchaser/StockPurchaserSampleApp.Tests/StockPurchaserSampleApp.Tests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false diff --git a/samples/StockPurchaser/StockPurchaserSampleApp/StockPurchaserSampleApp.csproj b/samples/StockPurchaser/StockPurchaserSampleApp/StockPurchaserSampleApp.csproj index 0be1173..ffc5486 100644 --- a/samples/StockPurchaser/StockPurchaserSampleApp/StockPurchaserSampleApp.csproj +++ b/samples/StockPurchaser/StockPurchaserSampleApp/StockPurchaserSampleApp.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable true diff --git a/samples/VendingMachine/VendingMachineSampleApp.Tests/VendingMachineSampleApp.Tests.csproj b/samples/VendingMachine/VendingMachineSampleApp.Tests/VendingMachineSampleApp.Tests.csproj index 86cca86..85829d2 100644 --- a/samples/VendingMachine/VendingMachineSampleApp.Tests/VendingMachineSampleApp.Tests.csproj +++ b/samples/VendingMachine/VendingMachineSampleApp.Tests/VendingMachineSampleApp.Tests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false diff --git a/samples/VendingMachine/VendingMachineSampleApp/VendingMachineSampleApp.csproj b/samples/VendingMachine/VendingMachineSampleApp/VendingMachineSampleApp.csproj index a4435a1..6a156b7 100644 --- a/samples/VendingMachine/VendingMachineSampleApp/VendingMachineSampleApp.csproj +++ b/samples/VendingMachine/VendingMachineSampleApp/VendingMachineSampleApp.csproj @@ -2,14 +2,14 @@ Exe - net9.0 + net10.0 enable enable true - + diff --git a/src/FunctionalStateMachine.CommandRunner/FunctionalStateMachine.CommandRunner.csproj b/src/FunctionalStateMachine.CommandRunner/FunctionalStateMachine.CommandRunner.csproj index dc11805..5b71c82 100644 --- a/src/FunctionalStateMachine.CommandRunner/FunctionalStateMachine.CommandRunner.csproj +++ b/src/FunctionalStateMachine.CommandRunner/FunctionalStateMachine.CommandRunner.csproj @@ -1,7 +1,7 @@  - netstandard2.0;net8.0 + netstandard2.0;net10.0 latest enable enable @@ -26,7 +26,7 @@ - + diff --git a/src/FunctionalStateMachine.Core/FunctionalStateMachine.Core.csproj b/src/FunctionalStateMachine.Core/FunctionalStateMachine.Core.csproj index 9ce2547..4ae4846 100644 --- a/src/FunctionalStateMachine.Core/FunctionalStateMachine.Core.csproj +++ b/src/FunctionalStateMachine.Core/FunctionalStateMachine.Core.csproj @@ -1,7 +1,7 @@ - netstandard2.0;net8.0 + netstandard2.0;net10.0 latest enable enable diff --git a/test/FunctionalStateMachine.Benchmarks/FunctionalStateMachine.Benchmarks.csproj b/test/FunctionalStateMachine.Benchmarks/FunctionalStateMachine.Benchmarks.csproj index 133d015..bcafd6c 100644 --- a/test/FunctionalStateMachine.Benchmarks/FunctionalStateMachine.Benchmarks.csproj +++ b/test/FunctionalStateMachine.Benchmarks/FunctionalStateMachine.Benchmarks.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable disable diff --git a/test/FunctionalStateMachine.CommandRunnerTests/FunctionalStateMachine.CommandRunnerTests.csproj b/test/FunctionalStateMachine.CommandRunnerTests/FunctionalStateMachine.CommandRunnerTests.csproj index a470c4e..21a843f 100644 --- a/test/FunctionalStateMachine.CommandRunnerTests/FunctionalStateMachine.CommandRunnerTests.csproj +++ b/test/FunctionalStateMachine.CommandRunnerTests/FunctionalStateMachine.CommandRunnerTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false @@ -10,7 +10,7 @@ - + diff --git a/test/FunctionalStateMachine.Core.Tests/FunctionalStateMachine.Core.Tests.csproj b/test/FunctionalStateMachine.Core.Tests/FunctionalStateMachine.Core.Tests.csproj index 4761e0d..c042c89 100644 --- a/test/FunctionalStateMachine.Core.Tests/FunctionalStateMachine.Core.Tests.csproj +++ b/test/FunctionalStateMachine.Core.Tests/FunctionalStateMachine.Core.Tests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false diff --git a/test/FunctionalStateMachine.Diagrams.Tests/FunctionalStateMachine.Diagrams.Tests.csproj b/test/FunctionalStateMachine.Diagrams.Tests/FunctionalStateMachine.Diagrams.Tests.csproj index ed63ac4..f93ca38 100644 --- a/test/FunctionalStateMachine.Diagrams.Tests/FunctionalStateMachine.Diagrams.Tests.csproj +++ b/test/FunctionalStateMachine.Diagrams.Tests/FunctionalStateMachine.Diagrams.Tests.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable false