Skip to content

Commit

Permalink
Upgrade to .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Coding-Enthusiast committed Nov 27, 2023
1 parent c1a0a8a commit 45c39d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnetCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Build
run: dotnet build ./Src/FinderOuter.sln -c Release
- name: Test
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Build
run: dotnet build ./Src/FinderOuter.sln -c Release
- name: Test
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Build
run: dotnet build ./Src/FinderOuter.sln -c Release
- name: Test
Expand Down
8 changes: 4 additions & 4 deletions Src/FinderOuter/FinderOuter.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyVersion>0.19.0.0</AssemblyVersion>
<FileVersion>0.19.0.0</FileVersion>
<TargetFramework>net8.0</TargetFramework>
<AssemblyVersion>0.19.0.1</AssemblyVersion>
<FileVersion>0.19.0.1</FileVersion>
<PackageProjectUrl>https://github.com/Coding-Enthusiast/FinderOuter</PackageProjectUrl>
<RepositoryUrl>https://github.com/Coding-Enthusiast/FinderOuter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright (c) 2020 Coding Enthusiast</Copyright>
<Version>0.19.0.0</Version>
<Version>0.19.0.1</Version>
<Company>Autarkysoft</Company>
<Authors>Coding-Enthusiast</Authors>
<PackageTags>bitcoin</PackageTags>
Expand Down
3 changes: 1 addition & 2 deletions Src/Tests/Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>

<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down

0 comments on commit 45c39d3

Please sign in to comment.