1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-19 15:41:22 +02:00
MLEM/Sandbox/Sandbox.csproj

35 lines
1.4 KiB
XML
Raw Normal View History

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>
<TargetFramework>net6.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" />
<PackageReference Include="FontStashSharp.MonoGame" Version="1.2.8" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
2019-09-19 20:23:18 +02:00
</ItemGroup>
2022-09-15 10:44:50 +02:00
<ItemGroup>
2022-10-27 10:22:25 +02:00
<Content Include="Content\Fonts\Symbola-Emoji.ttf" />
</ItemGroup>
<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>