Skip to content

Commit c003953

Browse files
committed
Frontend.Console: target .NET8.0 instead of .net6
This is to fix this compiler error when building in Release mode: ``` Determining projects to restore... /usr/share/dotnet/sdk/10.0.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.EolTargetFrameworks.targets(32,5): error NETSDK1138: The target framework 'net6.0' is out of support and will not receive security updates in the future. Please refer to https://aka.ms/dotnet-core-support for more information about the support policy. [/home/runner/work/geewallet/geewallet/src/GWallet.Frontend.Console/GWallet.Frontend.Console.fsproj] ```
1 parent 8d3895b commit c003953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GWallet.Frontend.Console/GWallet.Frontend.Console.fsproj

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
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="..\GWallet.Backend\Properties\CommonAssemblyInfo.fs">

0 commit comments

Comments
 (0)