diff --git a/.github/workflows/milky-build.yaml b/.github/workflows/milky-build.yaml index c8e253eb..c9a2df9a 100644 --- a/.github/workflows/milky-build.yaml +++ b/.github/workflows/milky-build.yaml @@ -48,7 +48,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v4 with: - dotnet-version: '9.0.x' + dotnet-version: '10' - name: Checkout code uses: actions/checkout@v4 diff --git a/.github/workflows/native-api-build.yaml b/.github/workflows/native-api-build.yaml index fd69f5f0..a3cbff8c 100644 --- a/.github/workflows/native-api-build.yaml +++ b/.github/workflows/native-api-build.yaml @@ -54,7 +54,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v4 with: - dotnet-version: '9.0.x' + dotnet-version: '10' - name: Install Linux Dependencies if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-22.04-arm' diff --git a/.github/workflows/nuget-push-lagrange-core.yaml b/.github/workflows/nuget-push-lagrange-core.yaml index d841ff3c..b05d8b73 100644 --- a/.github/workflows/nuget-push-lagrange-core.yaml +++ b/.github/workflows/nuget-push-lagrange-core.yaml @@ -48,7 +48,7 @@ jobs: - if: env.continued == 'true' uses: actions/setup-dotnet@v4 with: - dotnet-version: '9' + dotnet-version: '10' - if: env.continued == 'true' run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Lagrange.Core diff --git a/.github/workflows/nuget-push-lagrange-proto-codegen.yaml b/.github/workflows/nuget-push-lagrange-proto-codegen.yaml index 2a55a4f4..ae03cae0 100644 --- a/.github/workflows/nuget-push-lagrange-proto-codegen.yaml +++ b/.github/workflows/nuget-push-lagrange-proto-codegen.yaml @@ -48,7 +48,7 @@ jobs: - if: env.continued == 'true' uses: actions/setup-dotnet@v4 with: - dotnet-version: '9' + dotnet-version: '10' - if: env.continued == 'true' run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Lagrange.Proto.Generator diff --git a/.github/workflows/nuget-push-lagrange-proto.yaml b/.github/workflows/nuget-push-lagrange-proto.yaml index 8761677c..d7904a56 100644 --- a/.github/workflows/nuget-push-lagrange-proto.yaml +++ b/.github/workflows/nuget-push-lagrange-proto.yaml @@ -48,7 +48,7 @@ jobs: - if: env.continued == 'true' uses: actions/setup-dotnet@v4 with: - dotnet-version: '9' + dotnet-version: '10' - if: env.continued == 'true' run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Lagrange.Proto diff --git a/Lagrange.Codec/Lagrange.Codec.csproj b/Lagrange.Codec/Lagrange.Codec.csproj index b846a6e4..2c5fb061 100644 --- a/Lagrange.Codec/Lagrange.Codec.csproj +++ b/Lagrange.Codec/Lagrange.Codec.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable true diff --git a/Lagrange.Core.NativeAPI.Test/Lagrange.Core.NativeAPI.Test.csproj b/Lagrange.Core.NativeAPI.Test/Lagrange.Core.NativeAPI.Test.csproj index 85b49591..6c1dc922 100644 --- a/Lagrange.Core.NativeAPI.Test/Lagrange.Core.NativeAPI.Test.csproj +++ b/Lagrange.Core.NativeAPI.Test/Lagrange.Core.NativeAPI.Test.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable diff --git a/Lagrange.Core.NativeAPI/Lagrange.Core.NativeAPI.csproj b/Lagrange.Core.NativeAPI/Lagrange.Core.NativeAPI.csproj index 65ae6459..9a643a05 100644 --- a/Lagrange.Core.NativeAPI/Lagrange.Core.NativeAPI.csproj +++ b/Lagrange.Core.NativeAPI/Lagrange.Core.NativeAPI.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable true diff --git a/Lagrange.Core.Runner/Lagrange.Core.Runner.csproj b/Lagrange.Core.Runner/Lagrange.Core.Runner.csproj index 36368fb7..31326d8f 100644 --- a/Lagrange.Core.Runner/Lagrange.Core.Runner.csproj +++ b/Lagrange.Core.Runner/Lagrange.Core.Runner.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable true diff --git a/Lagrange.Core.Test/Lagrange.Core.Test.csproj b/Lagrange.Core.Test/Lagrange.Core.Test.csproj index 3fbc5003..b4dcc69c 100644 --- a/Lagrange.Core.Test/Lagrange.Core.Test.csproj +++ b/Lagrange.Core.Test/Lagrange.Core.Test.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 latest enable enable diff --git a/Lagrange.Milky/Lagrange.Milky.csproj b/Lagrange.Milky/Lagrange.Milky.csproj index bdf3b296..c9f5038a 100644 --- a/Lagrange.Milky/Lagrange.Milky.csproj +++ b/Lagrange.Milky/Lagrange.Milky.csproj @@ -1,7 +1,7 @@  Exe - net9.0 + net10.0 enable enable true diff --git a/Lagrange.Proto.Benchmark/Lagrange.Proto.Benchmark.csproj b/Lagrange.Proto.Benchmark/Lagrange.Proto.Benchmark.csproj index fbcb9597..66652685 100644 --- a/Lagrange.Proto.Benchmark/Lagrange.Proto.Benchmark.csproj +++ b/Lagrange.Proto.Benchmark/Lagrange.Proto.Benchmark.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable diff --git a/Lagrange.Proto.CodeGen/Lagrange.Proto.CodeGen.csproj b/Lagrange.Proto.CodeGen/Lagrange.Proto.CodeGen.csproj index f1634669..cadbd928 100644 --- a/Lagrange.Proto.CodeGen/Lagrange.Proto.CodeGen.csproj +++ b/Lagrange.Proto.CodeGen/Lagrange.Proto.CodeGen.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable true diff --git a/Lagrange.Proto.Runner/Lagrange.Proto.Runner.csproj b/Lagrange.Proto.Runner/Lagrange.Proto.Runner.csproj index 3ec88ef5..43f71f50 100644 --- a/Lagrange.Proto.Runner/Lagrange.Proto.Runner.csproj +++ b/Lagrange.Proto.Runner/Lagrange.Proto.Runner.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 enable enable true diff --git a/Lagrange.Proto.Test/Lagrange.Proto.Test.csproj b/Lagrange.Proto.Test/Lagrange.Proto.Test.csproj index 0ba4e6ea..0caa3473 100644 --- a/Lagrange.Proto.Test/Lagrange.Proto.Test.csproj +++ b/Lagrange.Proto.Test/Lagrange.Proto.Test.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 latest enable enable diff --git a/Lagrange.Proto/Lagrange.Proto.csproj b/Lagrange.Proto/Lagrange.Proto.csproj index 023ac1ae..9cd3163c 100644 --- a/Lagrange.Proto/Lagrange.Proto.csproj +++ b/Lagrange.Proto/Lagrange.Proto.csproj @@ -1,7 +1,7 @@  - net8.0;net9.0 + net8.0;net9.0;net10.0 enable enable true