File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,21 +13,21 @@ jobs:
13
13
with :
14
14
fetch-depth : 0
15
15
submodules : ' recursive'
16
- - name : Install .NET 8
16
+ - name : Install .NET 9
17
17
uses : actions/setup-dotnet@v4
18
18
with :
19
- dotnet-version : 8 .0.x
19
+ dotnet-version : 9 .0.x
20
20
- name : Restore project
21
21
run : dotnet restore TACTLib.sln --verbosity m -r win-x64
22
22
- name : Build Release
23
- run : dotnet publish -f net8 .0 --configuration Release -r win-x64 --self-contained false -o dist/Release
23
+ run : dotnet publish -f net9 .0 --configuration Release -r win-x64 --self-contained false -o dist/Release
24
24
- name : Upload Release
25
25
uses : actions/upload-artifact@v4
26
26
with :
27
27
name : TACTLib-release
28
28
path : dist/Release
29
29
- name : Build Debug
30
- run : dotnet publish -f net8 .0 --configuration Debug -r win-x64 --self-contained false -o dist/Debug
30
+ run : dotnet publish -f net9 .0 --configuration Debug -r win-x64 --self-contained false -o dist/Debug
31
31
- name : Upload Debug
32
32
uses : actions/upload-artifact@v4
33
33
with :
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<OutputType >Library</OutputType >
4
4
<LangVersion >preview</LangVersion >
5
- <TargetFramework >net8 .0</TargetFramework >
5
+ <TargetFramework >net9 .0</TargetFramework >
6
6
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
7
7
<Version >1.0.0.0</Version >
8
8
<Nullable >enable</Nullable >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
</PropertyGroup >
6
6
<ItemGroup >
7
7
<ProjectReference Include =" ..\TACTLib\TACTLib.csproj" />
You can’t perform that action at this time.
0 commit comments