diff --git a/Quartermaster.Tests/Quartermaster.Tests.csproj b/Quartermaster.Tests/Quartermaster.Tests.csproj index f9576fc1..e1d8270c 100644 --- a/Quartermaster.Tests/Quartermaster.Tests.csproj +++ b/Quartermaster.Tests/Quartermaster.Tests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Quartermaster/Quartermaster.csproj b/Quartermaster/Quartermaster.csproj index d968d398..46783424 100644 --- a/Quartermaster/Quartermaster.csproj +++ b/Quartermaster/Quartermaster.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 Exe true quartermaster diff --git a/TestHelper/TestHelper.csproj b/TestHelper/TestHelper.csproj index 8e3f3d66..710bc18e 100644 --- a/TestHelper/TestHelper.csproj +++ b/TestHelper/TestHelper.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.AwsResources.IntegrationTests/Watchman.AwsResources.IntegrationTests.csproj b/Watchman.AwsResources.IntegrationTests/Watchman.AwsResources.IntegrationTests.csproj index a4d19ba3..59c86a24 100644 --- a/Watchman.AwsResources.IntegrationTests/Watchman.AwsResources.IntegrationTests.csproj +++ b/Watchman.AwsResources.IntegrationTests/Watchman.AwsResources.IntegrationTests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.AwsResources.Tests/Watchman.AwsResources.Tests.csproj b/Watchman.AwsResources.Tests/Watchman.AwsResources.Tests.csproj index d7825780..e30f0972 100644 --- a/Watchman.AwsResources.Tests/Watchman.AwsResources.Tests.csproj +++ b/Watchman.AwsResources.Tests/Watchman.AwsResources.Tests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.AwsResources/Watchman.AwsResources.csproj b/Watchman.AwsResources/Watchman.AwsResources.csproj index 9076ed2f..0937aa88 100644 --- a/Watchman.AwsResources/Watchman.AwsResources.csproj +++ b/Watchman.AwsResources/Watchman.AwsResources.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.Configuration.Tests/Watchman.Configuration.Tests.csproj b/Watchman.Configuration.Tests/Watchman.Configuration.Tests.csproj index f2fd44ea..04d1a60d 100644 --- a/Watchman.Configuration.Tests/Watchman.Configuration.Tests.csproj +++ b/Watchman.Configuration.Tests/Watchman.Configuration.Tests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.Configuration/Watchman.Configuration.csproj b/Watchman.Configuration/Watchman.Configuration.csproj index 1cc79008..95ba4f5a 100644 --- a/Watchman.Configuration/Watchman.Configuration.csproj +++ b/Watchman.Configuration/Watchman.Configuration.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.Engine.IntegrationTests/Watchman.Engine.IntegrationTests.csproj b/Watchman.Engine.IntegrationTests/Watchman.Engine.IntegrationTests.csproj index c19c777f..f8c6160b 100644 --- a/Watchman.Engine.IntegrationTests/Watchman.Engine.IntegrationTests.csproj +++ b/Watchman.Engine.IntegrationTests/Watchman.Engine.IntegrationTests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.Engine.Tests/Watchman.Engine.Tests.csproj b/Watchman.Engine.Tests/Watchman.Engine.Tests.csproj index 5ee84144..17679c91 100644 --- a/Watchman.Engine.Tests/Watchman.Engine.Tests.csproj +++ b/Watchman.Engine.Tests/Watchman.Engine.Tests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.Engine/Watchman.Engine.csproj b/Watchman.Engine/Watchman.Engine.csproj index 9a396099..dad96c39 100644 --- a/Watchman.Engine/Watchman.Engine.csproj +++ b/Watchman.Engine/Watchman.Engine.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman.Tests/Watchman.Tests.csproj b/Watchman.Tests/Watchman.Tests.csproj index b53b29e1..6328e535 100644 --- a/Watchman.Tests/Watchman.Tests.csproj +++ b/Watchman.Tests/Watchman.Tests.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 diff --git a/Watchman/Watchman.csproj b/Watchman/Watchman.csproj index 6277093c..77709d75 100644 --- a/Watchman/Watchman.csproj +++ b/Watchman/Watchman.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 Exe true watchman diff --git a/build.ps1 b/build.ps1 index dee4e6a8..7875ad1a 100755 --- a/build.ps1 +++ b/build.ps1 @@ -88,7 +88,7 @@ function DotNetPack { $additionalArgs += $VersionSuffix } - & $dotnet pack $Project --output $PackageOutputPath --configuration $Configuration --include-symbols --include-source $additionalArgs + & $dotnet pack $Project --output $PackageOutputPath --configuration $Configuration --include-symbols --include-source --tl $additionalArgs if ($LASTEXITCODE -ne 0) { throw "dotnet pack failed with exit code $LASTEXITCODE" @@ -105,7 +105,7 @@ function DotNetTest { $additionalArgs += "GitHubActions;report-warnings=false" } - & $dotnet test $Project --output $OutputPath --configuration $Configuration $additionalArgs + & $dotnet test $Project --output $OutputPath --configuration $Configuration --tl $additionalArgs if ($LASTEXITCODE -ne 0) { throw "dotnet test failed with exit code $LASTEXITCODE" diff --git a/global.json b/global.json index 0115ef04..33d26e56 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.403", + "version": "8.0.100", "allowPrerelease": false, "rollForward": "latestMajor" }