2020-02-24 18:36:31 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-06-24 21:39:53 +02:00
|
|
|
|
|
2020-02-24 17:34:05 +01:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-04-30 13:14:44 +02:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-05-30 16:34:51 +02:00
|
|
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
|
|
|
<TieredCompilation>false</TieredCompilation>
|
2021-03-14 01:03:17 +01:00
|
|
|
|
<ApplicationIcon>Icon.ico</ApplicationIcon>
|
2020-02-24 17:34:05 +01:00
|
|
|
|
</PropertyGroup>
|
2022-06-24 21:39:53 +02:00
|
|
|
|
|
2020-02-24 17:34:05 +01:00
|
|
|
|
<ItemGroup>
|
2021-12-21 23:23:25 +01:00
|
|
|
|
<PackageReference Include="Contentless" Version="3.*" />
|
2022-06-24 21:39:53 +02:00
|
|
|
|
<PackageReference Include="MLEM.Startup" Version="6.*" />
|
2022-07-25 18:23:16 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.263" />
|
|
|
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.263" />
|
2020-02-24 17:34:05 +01:00
|
|
|
|
</ItemGroup>
|
2022-06-24 21:39:53 +02:00
|
|
|
|
|
2020-02-24 17:34:05 +01:00
|
|
|
|
<ItemGroup>
|
2021-03-14 01:03:17 +01:00
|
|
|
|
<EmbeddedResource Include="Icon.ico" />
|
|
|
|
|
<EmbeddedResource Include="Icon.bmp" />
|
2020-10-26 19:22:11 +01:00
|
|
|
|
</ItemGroup>
|
2022-07-25 18:23:16 +02:00
|
|
|
|
|
|
|
|
|
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
|
|
|
<Message Text="Restoring dotnet tools" Importance="High" />
|
|
|
|
|
<Exec Command="dotnet tool restore" />
|
|
|
|
|
</Target>
|
2022-06-24 21:39:53 +02:00
|
|
|
|
</Project>
|