Skip to content

Commit c2f080a

Browse files
committedNov 27, 2024··
update to .net 9
1 parent f2d6280 commit c2f080a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎.github/workflows/dotnet.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ jobs:
1313
with:
1414
fetch-depth: 0
1515
submodules: 'recursive'
16-
- name: Install .NET 8
16+
- name: Install .NET 9
1717
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 8.0.x
19+
dotnet-version: 9.0.x
2020
- name: Restore project
2121
run: dotnet restore TACTLib.sln --verbosity m -r win-x64
2222
- 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
2424
- name: Upload Release
2525
uses: actions/upload-artifact@v4
2626
with:
2727
name: TACTLib-release
2828
path: dist/Release
2929
- 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
3131
- name: Upload Debug
3232
uses: actions/upload-artifact@v4
3333
with:

‎TACTLib/TACTLib.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<OutputType>Library</OutputType>
44
<LangVersion>preview</LangVersion>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
<Version>1.0.0.0</Version>
88
<Nullable>enable</Nullable>

‎TACTLibTest/TACTLibTest.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<ProjectReference Include="..\TACTLib\TACTLib.csproj" />

0 commit comments

Comments
 (0)
Please sign in to comment.