-
Notifications
You must be signed in to change notification settings - Fork 1
/
Bomberman.csproj
29 lines (29 loc) · 1.15 KB
/
Bomberman.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RollForward>Major</RollForward>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aether.Physics2D.Diagnostics.MG" Version="1.6.1" />
<PackageReference Include="Aether.Physics2D.MG" Version="1.6.1" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
<PackageReference Include="SpriteFontPlus" Version="0.9.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="assets\fonts\" />
<Folder Include="assets\sound\" />
</ItemGroup>
<ItemGroup>
<None Update="assets\**\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
<Message Text="Restoring dotnet tools" Importance="High" />
<Exec Command="dotnet tool restore" />
</Target>
</Project>