Skip to content

Commit d5284aa

Browse files
committed
Update to .NET 10
1 parent de24db8 commit d5284aa

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup .NET
3333
uses: actions/setup-dotnet@v3
3434
with:
35-
dotnet-version: 9.0.x
35+
dotnet-version: 10.0.x
3636
- name: Restore dependencies
3737
run: dotnet restore /p:Configuration=${{ matrix.config }}
3838
- name: Publish TACTTool
@@ -44,13 +44,13 @@ jobs:
4444
- name: Archive TACTTool Release
4545
uses: thedoctor0/zip-release@main
4646
with:
47-
directory: ${{ github.workspace }}/TACTTool/bin/Release/net9.0/${{ matrix.target }}/publish
47+
directory: ${{ github.workspace }}/TACTTool/bin/Release/net10.0/${{ matrix.target }}/publish
4848
type: 'zip'
4949
filename: ${{ github.workspace }}/TACTTool-${{ matrix.config }}-${{ matrix.target }}.zip
5050
- name: Archive TACTSharp Release
5151
uses: thedoctor0/zip-release@main
5252
with:
53-
directory: ${{ github.workspace }}/TACTSharp/bin/Release/net9.0/publish
53+
directory: ${{ github.workspace }}/TACTSharp/bin/Release/net10.0/publish
5454
type: 'zip'
5555
filename: ${{ github.workspace }}/TACTSharp-lib-${{ matrix.config }}-${{ matrix.target }}.zip
5656
- name: Release

.github/workflows/nuget.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup .NET
3030
uses: actions/setup-dotnet@v4
3131
with:
32-
dotnet-version: 9.x.x
32+
dotnet-version: 10.x.x
3333
# Create the NuGet package in the folder from the environment variable NuGetDirectory
3434
- run: dotnet pack TACTSharp/TACTSharp.csproj --configuration Release --output ${{ env.NuGetDirectory }} /p:ContinuousIntegrationBuild=true
3535

@@ -49,7 +49,7 @@ jobs:
4949
- name: Setup .NET
5050
uses: actions/setup-dotnet@v4
5151
with:
52-
dotnet-version: 9.x.x
52+
dotnet-version: 10.x.x
5353

5454
# Download the NuGet package created in the previous job
5555
- uses: actions/[email protected]
@@ -74,7 +74,7 @@ jobs:
7474
- name: Setup .NET
7575
uses: actions/setup-dotnet@v4
7676
with:
77-
dotnet-version: 9.x.x
77+
dotnet-version: 10.x.x
7878
- name: Run tests
7979
run: dotnet test --configuration Release
8080

@@ -95,7 +95,7 @@ jobs:
9595
- name: Setup .NET Core
9696
uses: actions/setup-dotnet@v4
9797
with:
98-
dotnet-version: 9.x.x
98+
dotnet-version: 10.x.x
9999

100100
# Publish all NuGet packages to NuGet.org
101101
# Use --skip-duplicate to prevent errors if a package with the same version already exists.

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v4
1515
with:
16-
dotnet-version: 9.x.x
16+
dotnet-version: 10.x.x
1717
- name: Restore dependencies
1818
run: dotnet restore
1919
- name: Build

TACTBench/TACTBench.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
<PublishAot>true</PublishAot>

TACTSharp.Native/TACTSharp.Native.csproj

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

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

TACTSharp.Tests/TACTSharp.Tests.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>

TACTSharp/TACTSharp.csproj

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

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

TACTTool/TACTTool.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
<PublishSingleFile>true</PublishSingleFile>

0 commit comments

Comments
 (0)