mirror of
https://github.com/LANCommander/Borderless1942.git
synced 2026-08-01 02:24:18 -04:00
25 lines
797 B
XML
25 lines
797 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<PublishAot>true</PublishAot>
|
|
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.1.619-beta">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include=".github\workflows\build.yml" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|