diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2746f0762..0ee6e9c65 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ "image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0-jammy", "features": { "ghcr.io/devcontainers/features/dotnet:2": { - "version": "9.0" + "version": "10.0" }, "ghcr.io/devcontainers/features/node:1": {} }, diff --git a/.github/workflows/ci-build-test.yml b/.github/workflows/ci-build-test.yml index b29bccd53..b6e7deefc 100644 --- a/.github/workflows/ci-build-test.yml +++ b/.github/workflows/ci-build-test.yml @@ -43,8 +43,8 @@ jobs: uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1 with: dotnet-version: | + 10.0.x 9.0.x - 8.0.x # NetFX testing on non-Windows requires mono - name: Setup Mono @@ -78,7 +78,6 @@ jobs: --filter '(Execution!=Manual)' --no-build --configuration ${{ matrix.configuration }} - --logger "console;verbosity=normal" --logger "trx" --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" --blame diff --git a/.github/workflows/ci-code-coverage.yml b/.github/workflows/ci-code-coverage.yml index dc86e65b9..55acbfa96 100644 --- a/.github/workflows/ci-code-coverage.yml +++ b/.github/workflows/ci-code-coverage.yml @@ -15,8 +15,8 @@ jobs: uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1 with: dotnet-version: | + 10.0.x 9.0.x - 8.0.x - name: Download test results uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 866b5774d..b7e466115 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,9 @@ jobs: - name: .NET Setup uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1 with: - dotnet-version: 9.x + dotnet-version: | + 10.0.x + 9.0.x - name: Generate documentation run: make generate-docs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9ae26f8a0..7993cd98e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,9 @@ jobs: - name: Set up .NET uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1 with: - dotnet-version: 9.0.x + dotnet-version: | + 10.0.x + 9.0.x - name: Build run: dotnet build --configuration ${{ matrix.configuration }} diff --git a/Directory.Packages.props b/Directory.Packages.props index 1ae45da31..2d8f454e8 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -34,6 +34,15 @@ + + + + + + + + + diff --git a/global.json b/global.json index 903111e2b..58c475f9f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,7 @@ { "sdk": { - "version": "9.0.204", - "rollForward": "minor" + "version": "10.0.100-rc.1", + "rollForward": "minor", + "allowPrerelease": true } } diff --git a/samples/TestServerWithHosting/TestServerWithHosting.csproj b/samples/TestServerWithHosting/TestServerWithHosting.csproj index 2466a2811..7967395c0 100644 --- a/samples/TestServerWithHosting/TestServerWithHosting.csproj +++ b/samples/TestServerWithHosting/TestServerWithHosting.csproj @@ -2,7 +2,7 @@ Exe - net9.0;net8.0;net472 + net10.0;net9.0;net8.0;net472 enable enable true diff --git a/tests/ModelContextProtocol.AspNetCore.Tests/ModelContextProtocol.AspNetCore.Tests.csproj b/tests/ModelContextProtocol.AspNetCore.Tests/ModelContextProtocol.AspNetCore.Tests.csproj index 34801c736..7adeb03d3 100644 --- a/tests/ModelContextProtocol.AspNetCore.Tests/ModelContextProtocol.AspNetCore.Tests.csproj +++ b/tests/ModelContextProtocol.AspNetCore.Tests/ModelContextProtocol.AspNetCore.Tests.csproj @@ -1,7 +1,7 @@  - net9.0;net8.0 + net10.0;net9.0;net8.0 enable enable false diff --git a/tests/ModelContextProtocol.AspNetCore.Tests/StreamableHttpServerConformanceTests.cs b/tests/ModelContextProtocol.AspNetCore.Tests/StreamableHttpServerConformanceTests.cs index 7b2be8f98..f180cdaf9 100644 --- a/tests/ModelContextProtocol.AspNetCore.Tests/StreamableHttpServerConformanceTests.cs +++ b/tests/ModelContextProtocol.AspNetCore.Tests/StreamableHttpServerConformanceTests.cs @@ -57,7 +57,11 @@ public async ValueTask DisposeAsync() base.Dispose(); } +#if !NET10_0 [Fact] +#else + [Fact(Skip = "https://github.com/modelcontextprotocol/csharp-sdk/issues/823")] +#endif public async Task NegativeNonInfiniteIdleTimeout_Throws_ArgumentOutOfRangeException() { Builder.Services.AddMcpServer().WithHttpTransport(options => @@ -69,7 +73,11 @@ public async Task NegativeNonInfiniteIdleTimeout_Throws_ArgumentOutOfRangeExcept Assert.Contains("IdleTimeout", ex.Message); } +#if !NET10_0 [Fact] +#else + [Fact(Skip = "https://github.com/modelcontextprotocol/csharp-sdk/issues/823")] +#endif public async Task NegativeMaxIdleSessionCount_Throws_ArgumentOutOfRangeException() { Builder.Services.AddMcpServer().WithHttpTransport(options => diff --git a/tests/ModelContextProtocol.TestOAuthServer/ModelContextProtocol.TestOAuthServer.csproj b/tests/ModelContextProtocol.TestOAuthServer/ModelContextProtocol.TestOAuthServer.csproj index 51092f564..9ea927474 100644 --- a/tests/ModelContextProtocol.TestOAuthServer/ModelContextProtocol.TestOAuthServer.csproj +++ b/tests/ModelContextProtocol.TestOAuthServer/ModelContextProtocol.TestOAuthServer.csproj @@ -1,7 +1,7 @@ - net9.0;net8.0 + net10.0;net9.0;net8.0 enable enable diff --git a/tests/ModelContextProtocol.TestServer/ModelContextProtocol.TestServer.csproj b/tests/ModelContextProtocol.TestServer/ModelContextProtocol.TestServer.csproj index f38a35859..c4b39bb54 100644 --- a/tests/ModelContextProtocol.TestServer/ModelContextProtocol.TestServer.csproj +++ b/tests/ModelContextProtocol.TestServer/ModelContextProtocol.TestServer.csproj @@ -2,7 +2,7 @@ Exe - net9.0;net8.0;net472 + net10.0;net9.0;net8.0;net472 enable enable TestServer diff --git a/tests/ModelContextProtocol.TestSseServer/ModelContextProtocol.TestSseServer.csproj b/tests/ModelContextProtocol.TestSseServer/ModelContextProtocol.TestSseServer.csproj index f56d0db9e..3296ff481 100644 --- a/tests/ModelContextProtocol.TestSseServer/ModelContextProtocol.TestSseServer.csproj +++ b/tests/ModelContextProtocol.TestSseServer/ModelContextProtocol.TestSseServer.csproj @@ -2,7 +2,7 @@ Exe - net9.0;net8.0 + net10.0;net9.0;net8.0 enable enable TestSseServer diff --git a/tests/ModelContextProtocol.Tests/ModelContextProtocol.Tests.csproj b/tests/ModelContextProtocol.Tests/ModelContextProtocol.Tests.csproj index 993564bf0..3c7d631ad 100644 --- a/tests/ModelContextProtocol.Tests/ModelContextProtocol.Tests.csproj +++ b/tests/ModelContextProtocol.Tests/ModelContextProtocol.Tests.csproj @@ -2,13 +2,15 @@ Exe - net9.0;net8.0;net472 + net10.0;net9.0;net8.0;net472 enable enable false true ModelContextProtocol.Tests + + $(NoWarn);NU1903;NU1902