2022-06-24 14:01:26 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<TargetFramework>net8.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>
|
2022-12-08 17:02:22 +01:00
|
|
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<ProjectReference Include="..\ThirdParty\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" />
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<Content Include="../ThirdParty/Native/**">
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Link>%(Filename)%(Extension)</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|