Files
TicTacToe/TicTacToe.csproj
2025-10-20 10:00:51 +02:00

28 lines
824 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<!-- 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>