39 lines
1.7 KiB
XML
39 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-android</TargetFramework>
|
|
<TargetPlatformVersion>34</TargetPlatformVersion>
|
|
<SupportedOSPlatformVersion>31</SupportedOSPlatformVersion>
|
|
<OutputType>Exe</OutputType>
|
|
<ApplicationId>de.ellpeck.touchytickets</ApplicationId>
|
|
<ApplicationVersion>141</ApplicationVersion>
|
|
<ApplicationDisplayVersion>1.4.1</ApplicationDisplayVersion>
|
|
<RunAOTCompilation>false</RunAOTCompilation>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<AndroidKeyStore>True</AndroidKeyStore>
|
|
<AndroidSigningKeyStore>../TouchyTicketsAndroid.keystore</AndroidSigningKeyStore>
|
|
<AndroidSigningKeyAlias>TouchyTicketsAndroid</AndroidSigningKeyAlias>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TouchyTickets\TouchyTickets.csproj"/>
|
|
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303"/>
|
|
<PackageReference Include="MonoGame.Framework.Android" Version="3.8.1.303"/>
|
|
<PackageReference Include="Contentless" Version="3.0.7"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MonoGameContentReference Include="..\TouchyTickets\Content\Content.mgcb"/>
|
|
<None Include="..\TouchyTickets\Content\*\**">
|
|
<Link>Content/%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
<Message Text="Restoring dotnet tools" Importance="High"/>
|
|
<Exec Command="dotnet tool restore"/>
|
|
</Target>
|
|
</Project>
|