Update project configuration to target .NET 6.0 and enable Windows Forms support

This commit is contained in:
vista-man
2025-01-27 19:01:52 +01:00
parent 718626c83c
commit c4b64f4b50
37 changed files with 309 additions and 25 deletions

View File

@@ -1,10 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
</Project>