mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 13:20:50 +01:00
24 lines
961 B
XML
24 lines
961 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-android</TargetFramework>
|
|
<SupportedOSPlatformVersion>31</SupportedOSPlatformVersion>
|
|
<OutputType>Exe</OutputType>
|
|
<ApplicationId>de.ellpeck.mlem.demos.android</ApplicationId>
|
|
<ApplicationVersion>100</ApplicationVersion>
|
|
<ApplicationDisplayVersion>1.0.0</ApplicationDisplayVersion>
|
|
<RunAOTCompilation>false</RunAOTCompilation>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
|
|
<PackageReference Include="MonoGame.Framework.Android" Version="3.8.1.303" />
|
|
|
|
<ProjectReference Include="..\Demos\Demos.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MonoGameContentReference Include="..\Demos\Content\Content.mgcb" />
|
|
</ItemGroup>
|
|
</Project>
|