2019-09-19 20:23:18 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net462</TargetFramework>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="MonoGame.Content.Builder" Version="3.7.0.9" />
|
|
|
|
|
<PackageReference Include="MonoGame.Extended.Content.Pipeline" Version="3.7.0" />
|
|
|
|
|
<PackageReference Include="MonoGame.Extended.Tiled" Version="3.7.0" />
|
|
|
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.7.0.1708" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<MonoGameContentReference Include="Content\Content.mgcb" />
|
2020-04-22 00:30:55 +02:00
|
|
|
|
<Content Include="Content\*\**">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-09-19 20:23:18 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|