Skip to content

Commit c64bfa4

Browse files
Upgrade Denovo, Benchmarks and Tests to .net 8 + bump CI
1 parent 4a927b8 commit c64bfa4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/dotnetCI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v3
1616
with:
17-
dotnet-version: 6.0.x
17+
dotnet-version: 8.0.x
1818
- name: Build
1919
run: dotnet build ./Src/Denovo.sln -c Release
2020
- name: Test

Src/Benchmarks/Benchmarks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<Authors>Coding-Enthusiast</Authors>
77
<Company>Autarkysoft</Company>
88
<Copyright>Copyright (c) 2020 Autarkysoft</Copyright>

Src/Denovo/Denovo.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>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<AssemblyVersion>0.7.0.0</AssemblyVersion>
66
<Authors>Coding-Enthusiast</Authors>
77
<Company>Autarkysoft</Company>

Src/Tests/Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<Version>0.1.0.0</Version>
77
<Authors>Coding-Enthusiast</Authors>

0 commit comments

Comments
 (0)