Files
TicTacToe/Tic-Tac-Toe/Tic-Tac-Toe.csproj

36 lines
1.2 KiB
XML
Raw Permalink Normal View History

2022-09-27 11:21:57 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2022-09-21 11:37:13 +02:00
<PropertyGroup>
2022-09-27 11:21:57 +02:00
<OutputType>WinExe</OutputType>
2022-09-21 11:37:13 +02:00
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
2022-09-27 11:21:57 +02:00
<ApplicationIcon>tic-tac-toe.ico</ApplicationIcon>
2022-09-21 11:37:13 +02:00
</PropertyGroup>
<ItemGroup>
<None Remove="Icon.ico" />
<None Remove="Icon.bmp" />
</ItemGroup>
2022-09-27 11:21:57 +02:00
<ItemGroup>
<Content Include="tic-tac-toe.ico" />
</ItemGroup>
2022-09-21 11:37:13 +02:00
<ItemGroup>
<EmbeddedResource Include="Icon.ico" />
<EmbeddedResource Include="Icon.bmp" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Extended" Version="3.8.0" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
</ItemGroup>
<ItemGroup>
<Folder Include="Content\Textures\" />
</ItemGroup>
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
<Message Text="Restoring dotnet tools" Importance="High" />
<Exec Command="dotnet tool restore" />
</Target>
</Project>