2022-06-24 14:01:26 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-08-20 11:39:28 +02:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<ApplicationIcon>Icon.ico</ApplicationIcon>
|
|
|
|
|
<AssemblyName>MLEM Desktop Demos</AssemblyName>
|
|
|
|
|
<RootNamespace>Demos.DesktopGL</RootNamespace>
|
|
|
|
|
<DefineConstants>$(DefineConstants);FNA</DefineConstants>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<!-- We still use the MG content builder for ease of compatibility between the MG and FNA demo projects -->
|
|
|
|
|
<MonoGamePlatform>DesktopGL</MonoGamePlatform>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Demos\Demos.FNA.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.FNA.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.FNA.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MLEM\MLEM.FNA.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.0.1641" />
|
2022-09-14 22:13:05 +02:00
|
|
|
|
<ProjectReference Include="..\FNA\FNA.Core.csproj" />
|
2022-06-24 14:01:26 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<MonoGameContentReference Include="..\Demos\Content\Content.mgcb" />
|
|
|
|
|
<Content Include="..\Demos\Content\*\**" />
|
|
|
|
|
<EmbeddedResource Include="Icon.ico" />
|
|
|
|
|
<EmbeddedResource Include="Icon.bmp" />
|
2022-06-24 21:33:24 +02:00
|
|
|
|
<Content Include="FnaNative/**">
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Link>%(Filename)%(Extension)</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|