Skip to content

Commit 1b7a08d

Browse files
authored
[All] Upgrade to .NET 10 (#82)
1 parent c517941 commit 1b7a08d

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

.github/workflows/milky-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Setup .NET SDK
4949
uses: actions/setup-dotnet@v4
5050
with:
51-
dotnet-version: '9.0.x'
51+
dotnet-version: '10'
5252

5353
- name: Checkout code
5454
uses: actions/checkout@v4

.github/workflows/native-api-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup .NET SDK
5555
uses: actions/setup-dotnet@v4
5656
with:
57-
dotnet-version: '9.0.x'
57+
dotnet-version: '10'
5858

5959
- name: Install Linux Dependencies
6060
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-22.04-arm'

.github/workflows/nuget-push-lagrange-core.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- if: env.continued == 'true'
4949
uses: actions/setup-dotnet@v4
5050
with:
51-
dotnet-version: '9'
51+
dotnet-version: '10'
5252

5353
- if: env.continued == 'true'
5454
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Lagrange.Core

.github/workflows/nuget-push-lagrange-proto-codegen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- if: env.continued == 'true'
4949
uses: actions/setup-dotnet@v4
5050
with:
51-
dotnet-version: '9'
51+
dotnet-version: '10'
5252

5353
- if: env.continued == 'true'
5454
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Lagrange.Proto.Generator

.github/workflows/nuget-push-lagrange-proto.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- if: env.continued == 'true'
4949
uses: actions/setup-dotnet@v4
5050
with:
51-
dotnet-version: '9'
51+
dotnet-version: '10'
5252

5353
- if: env.continued == 'true'
5454
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Lagrange.Proto

Lagrange.Codec/Lagrange.Codec.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

Lagrange.Core.NativeAPI.Test/Lagrange.Core.NativeAPI.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

Lagrange.Core.NativeAPI/Lagrange.Core.NativeAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<PublishAot>true</PublishAot>

Lagrange.Core.Runner/Lagrange.Core.Runner.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

Lagrange.Core.Test/Lagrange.Core.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)