2019-09-19 20:23:18 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-09-15 10:44:50 +02:00
|
|
|
|
|
2019-09-19 20:23:18 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2019-09-19 20:23:18 +02:00
|
|
|
|
</PropertyGroup>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
|
2019-09-19 20:23:18 +02:00
|
|
|
|
<ItemGroup>
|
2020-02-27 18:56:49 +01:00
|
|
|
|
<ProjectReference Include="..\MLEM.Data\MLEM.Data.csproj" />
|
2019-09-19 20:23:18 +02:00
|
|
|
|
<ProjectReference Include="..\MLEM.Extended\MLEM.Extended.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
|
|
|
|
</ItemGroup>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
|
2019-09-19 20:23:18 +02:00
|
|
|
|
<ItemGroup>
|
2022-09-03 12:31:34 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
|
2021-03-24 22:31:58 +01:00
|
|
|
|
<PackageReference Include="MonoGame.Extended.Content.Pipeline" Version="3.8.0" />
|
|
|
|
|
<PackageReference Include="MonoGame.Extended.Tiled" Version="3.8.0" />
|
2022-09-03 12:31:34 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
|
2022-12-08 17:02:22 +01:00
|
|
|
|
<PackageReference Include="FontStashSharp.MonoGame" Version="1.2.8" />
|
2023-03-29 21:54:30 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2019-09-19 20:23:18 +02:00
|
|
|
|
</ItemGroup>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
|
2022-10-15 13:48:45 +02:00
|
|
|
|
<ItemGroup>
|
2022-10-27 10:22:25 +02:00
|
|
|
|
<Content Include="Content\Fonts\Symbola-Emoji.ttf" />
|
2022-10-15 13:48:45 +02: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>
|
2019-09-19 20:23:18 +02:00
|
|
|
|
</Project>
|