diff --git a/.github/workflows/build-and-deploy-test.yml b/.github/workflows/build-and-deploy-test.yml index 55db4e3..5cddaf9 100644 --- a/.github/workflows/build-and-deploy-test.yml +++ b/.github/workflows/build-and-deploy-test.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore Tools run: dotnet tool restore diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 8826991..0d299c4 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore Dependencies run: dotnet restore @@ -45,7 +45,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore Dependencies run: dotnet restore @@ -73,7 +73,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore Dependencies run: dotnet restore @@ -101,7 +101,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore Dependencies run: dotnet restore diff --git a/.github/workflows/pr-verification.yml b/.github/workflows/pr-verification.yml index 9d4a4d8..21e1a68 100644 --- a/.github/workflows/pr-verification.yml +++ b/.github/workflows/pr-verification.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore Tools run: dotnet tool restore diff --git a/global.json b/global.json index b5b37b6..9a523dc 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.0", + "version": "10.0.0", "rollForward": "latestMajor", "allowPrerelease": false } diff --git a/src/Setlistbot.Application/Setlistbot.Application.csproj b/src/Setlistbot.Application/Setlistbot.Application.csproj index 51ad565..46fccb6 100644 --- a/src/Setlistbot.Application/Setlistbot.Application.csproj +++ b/src/Setlistbot.Application/Setlistbot.Application.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Domain.GratefulDead/Setlistbot.Domain.GratefulDead.csproj b/src/Setlistbot.Domain.GratefulDead/Setlistbot.Domain.GratefulDead.csproj index e2938ff..002163c 100644 --- a/src/Setlistbot.Domain.GratefulDead/Setlistbot.Domain.GratefulDead.csproj +++ b/src/Setlistbot.Domain.GratefulDead/Setlistbot.Domain.GratefulDead.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.csproj b/src/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.csproj index e2938ff..002163c 100644 --- a/src/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.csproj +++ b/src/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Domain.Phish/Setlistbot.Domain.Phish.csproj b/src/Setlistbot.Domain.Phish/Setlistbot.Domain.Phish.csproj index e2938ff..002163c 100644 --- a/src/Setlistbot.Domain.Phish/Setlistbot.Domain.Phish.csproj +++ b/src/Setlistbot.Domain.Phish/Setlistbot.Domain.Phish.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Domain/Setlistbot.Domain.csproj b/src/Setlistbot.Domain/Setlistbot.Domain.csproj index 7781672..990f03e 100644 --- a/src/Setlistbot.Domain/Setlistbot.Domain.csproj +++ b/src/Setlistbot.Domain/Setlistbot.Domain.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Function.Discord/Setlistbot.Function.Discord.csproj b/src/Setlistbot.Function.Discord/Setlistbot.Function.Discord.csproj index d67b740..3da7da2 100644 --- a/src/Setlistbot.Function.Discord/Setlistbot.Function.Discord.csproj +++ b/src/Setlistbot.Function.Discord/Setlistbot.Function.Discord.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 v4 Exe enable diff --git a/src/Setlistbot.Function.RedditBot/Setlistbot.Function.RedditBot.csproj b/src/Setlistbot.Function.RedditBot/Setlistbot.Function.RedditBot.csproj index a7ab565..a19b53b 100644 --- a/src/Setlistbot.Function.RedditBot/Setlistbot.Function.RedditBot.csproj +++ b/src/Setlistbot.Function.RedditBot/Setlistbot.Function.RedditBot.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 v4 Exe enable diff --git a/src/Setlistbot.Infrastructure.Discord/Setlistbot.Infrastructure.Discord.csproj b/src/Setlistbot.Infrastructure.Discord/Setlistbot.Infrastructure.Discord.csproj index d294aae..6316bc4 100644 --- a/src/Setlistbot.Infrastructure.Discord/Setlistbot.Infrastructure.Discord.csproj +++ b/src/Setlistbot.Infrastructure.Discord/Setlistbot.Infrastructure.Discord.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Infrastructure.GratefulDead/Setlistbot.Infrastructure.GratefulDead.csproj b/src/Setlistbot.Infrastructure.GratefulDead/Setlistbot.Infrastructure.GratefulDead.csproj index 392b205..16275aa 100644 --- a/src/Setlistbot.Infrastructure.GratefulDead/Setlistbot.Infrastructure.GratefulDead.csproj +++ b/src/Setlistbot.Infrastructure.GratefulDead/Setlistbot.Infrastructure.GratefulDead.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Infrastructure.KglwNet/Setlistbot.Infrastructure.KglwNet.csproj b/src/Setlistbot.Infrastructure.KglwNet/Setlistbot.Infrastructure.KglwNet.csproj index 335b111..3f0c3a8 100644 --- a/src/Setlistbot.Infrastructure.KglwNet/Setlistbot.Infrastructure.KglwNet.csproj +++ b/src/Setlistbot.Infrastructure.KglwNet/Setlistbot.Infrastructure.KglwNet.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.csproj b/src/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.csproj index 869ec69..cae372d 100644 --- a/src/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.csproj +++ b/src/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Infrastructure.Reddit/Setlistbot.Infrastructure.Reddit.csproj b/src/Setlistbot.Infrastructure.Reddit/Setlistbot.Infrastructure.Reddit.csproj index e23b386..9ee3e96 100644 --- a/src/Setlistbot.Infrastructure.Reddit/Setlistbot.Infrastructure.Reddit.csproj +++ b/src/Setlistbot.Infrastructure.Reddit/Setlistbot.Infrastructure.Reddit.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/src/Setlistbot.Infrastructure/Setlistbot.Infrastructure.csproj b/src/Setlistbot.Infrastructure/Setlistbot.Infrastructure.csproj index 6c84ad4..d0fa7a1 100644 --- a/src/Setlistbot.Infrastructure/Setlistbot.Infrastructure.csproj +++ b/src/Setlistbot.Infrastructure/Setlistbot.Infrastructure.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable diff --git a/test/Setlistbot.Application.UnitTests/Setlistbot.Application.UnitTests.csproj b/test/Setlistbot.Application.UnitTests/Setlistbot.Application.UnitTests.csproj index d285475..ec47cb3 100644 --- a/test/Setlistbot.Application.UnitTests/Setlistbot.Application.UnitTests.csproj +++ b/test/Setlistbot.Application.UnitTests/Setlistbot.Application.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Domain.GratefulDead.UnitTests/Setlistbot.Domain.GratefulDead.UnitTests.csproj b/test/Setlistbot.Domain.GratefulDead.UnitTests/Setlistbot.Domain.GratefulDead.UnitTests.csproj index 8bb6b95..7d6a670 100644 --- a/test/Setlistbot.Domain.GratefulDead.UnitTests/Setlistbot.Domain.GratefulDead.UnitTests.csproj +++ b/test/Setlistbot.Domain.GratefulDead.UnitTests/Setlistbot.Domain.GratefulDead.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.UnitTests.csproj b/test/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.UnitTests.csproj index e1dcc86..80847f0 100644 --- a/test/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.UnitTests.csproj +++ b/test/Setlistbot.Domain.Kglw/Setlistbot.Domain.Kglw.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Domain.Phish.UnitTests/Setlistbot.Domain.Phish.UnitTests.csproj b/test/Setlistbot.Domain.Phish.UnitTests/Setlistbot.Domain.Phish.UnitTests.csproj index cbee36f..da70ef7 100644 --- a/test/Setlistbot.Domain.Phish.UnitTests/Setlistbot.Domain.Phish.UnitTests.csproj +++ b/test/Setlistbot.Domain.Phish.UnitTests/Setlistbot.Domain.Phish.UnitTests.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Domain.UnitTests/Setlistbot.Domain.UnitTests.csproj b/test/Setlistbot.Domain.UnitTests/Setlistbot.Domain.UnitTests.csproj index 50f98f4..6a93473 100644 --- a/test/Setlistbot.Domain.UnitTests/Setlistbot.Domain.UnitTests.csproj +++ b/test/Setlistbot.Domain.UnitTests/Setlistbot.Domain.UnitTests.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 enable enable true diff --git a/test/Setlistbot.Function.Discord.UnitTests/Setlistbot.Function.Discord.UnitTests.csproj b/test/Setlistbot.Function.Discord.UnitTests/Setlistbot.Function.Discord.UnitTests.csproj index 11790d4..c35388d 100644 --- a/test/Setlistbot.Function.Discord.UnitTests/Setlistbot.Function.Discord.UnitTests.csproj +++ b/test/Setlistbot.Function.Discord.UnitTests/Setlistbot.Function.Discord.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Infrastructure.GratefulDead.UnitTests/Setlistbot.Infrastructure.GratefulDead.UnitTests.csproj b/test/Setlistbot.Infrastructure.GratefulDead.UnitTests/Setlistbot.Infrastructure.GratefulDead.UnitTests.csproj index dfba9f3..7a5df15 100644 --- a/test/Setlistbot.Infrastructure.GratefulDead.UnitTests/Setlistbot.Infrastructure.GratefulDead.UnitTests.csproj +++ b/test/Setlistbot.Infrastructure.GratefulDead.UnitTests/Setlistbot.Infrastructure.GratefulDead.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Infrastructure.KglwNet.UnitTests/Setlistbot.Infrastructure.KglwNet.UnitTests.csproj b/test/Setlistbot.Infrastructure.KglwNet.UnitTests/Setlistbot.Infrastructure.KglwNet.UnitTests.csproj index c7be174..f86645a 100644 --- a/test/Setlistbot.Infrastructure.KglwNet.UnitTests/Setlistbot.Infrastructure.KglwNet.UnitTests.csproj +++ b/test/Setlistbot.Infrastructure.KglwNet.UnitTests/Setlistbot.Infrastructure.KglwNet.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.UnitTests.csproj b/test/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.UnitTests.csproj index 70685bd..43be577 100644 --- a/test/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.UnitTests.csproj +++ b/test/Setlistbot.Infrastructure.PhishNet/Setlistbot.Infrastructure.PhishNet.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false diff --git a/test/Setlistbot.Infrastructure.Reddit.UnitTests/Setlistbot.Infrastructure.Reddit.UnitTests.csproj b/test/Setlistbot.Infrastructure.Reddit.UnitTests/Setlistbot.Infrastructure.Reddit.UnitTests.csproj index 67ea454..e05cc98 100644 --- a/test/Setlistbot.Infrastructure.Reddit.UnitTests/Setlistbot.Infrastructure.Reddit.UnitTests.csproj +++ b/test/Setlistbot.Infrastructure.Reddit.UnitTests/Setlistbot.Infrastructure.Reddit.UnitTests.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 enable enable true diff --git a/test/Setlistbot.Infrastructure.UnitTests/Setlistbot.Infrastructure.UnitTests.csproj b/test/Setlistbot.Infrastructure.UnitTests/Setlistbot.Infrastructure.UnitTests.csproj index 2252cc5..1a19a93 100644 --- a/test/Setlistbot.Infrastructure.UnitTests/Setlistbot.Infrastructure.UnitTests.csproj +++ b/test/Setlistbot.Infrastructure.UnitTests/Setlistbot.Infrastructure.UnitTests.csproj @@ -1,6 +1,6 @@ - net8.0 + net10.0 enable enable false