35 lines
1.7 KiB
XML
35 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0-android</TargetFramework>
|
|
<SupportedOSPlatformVersion>29</SupportedOSPlatformVersion>
|
|
<ApplicationId>com.companyname.MonoGameBlank2dStartKit</ApplicationId>
|
|
<ApplicationVersion>1</ApplicationVersion>
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
<AssemblyName>MonoGameBlank2dStartKit</AssemblyName>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<CreatePackage>false</CreatePackage>
|
|
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<CreatePackage>true</CreatePackage>
|
|
<DefineConstants>$(DefineConstants);</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<MonoGameContentReference Include="..\MonoGameBlank2dStartKit.Core\Content\MonoGameBlank2dStartKit.mgcb">
|
|
<Link>Content\MonoGameBlank2dStartKit.mgcb</Link>
|
|
</MonoGameContentReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MonoGameBlank2dStartKit.Core\MonoGameBlank2dStartKit.Core.csproj"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*"/>
|
|
<PackageReference Include="MonoGame.Framework.Android" Version="3.8.*"/>
|
|
</ItemGroup>
|
|
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
<Message Text="Restoring dotnet tools" Importance="High"/>
|
|
<Exec Command="dotnet tool restore"/>
|
|
</Target>
|
|
</Project> |