Completed

This commit is contained in:
maxwes08
2025-10-20 10:00:51 +02:00
parent 3fe7224aaf
commit cc5b6125bb
7 changed files with 129 additions and 50 deletions

View File

@@ -1,11 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</Project>
<!-- standalone exe -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<!-- optimization -->
<TrimMode>link</TrimMode>
<ReadyToRun>true</ReadyToRun>
<TieredCompilation>false</TieredCompilation>
<Optimize>true</Optimize>
<!-- icon -->
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
</Project>