2023-02-11 10:16:42 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-05-30 19:41:49 +02:00
|
|
|
|
<PropertyGroup>
|
2024-04-15 17:54:42 +02:00
|
|
|
|
<TargetFramework>net8.0-android</TargetFramework>
|
|
|
|
|
<TargetPlatformVersion>34</TargetPlatformVersion>
|
2024-10-25 14:38:01 +02:00
|
|
|
|
<SupportedOSPlatformVersion>31</SupportedOSPlatformVersion>
|
2023-02-11 10:16:42 +01:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<ApplicationId>de.ellpeck.touchytickets</ApplicationId>
|
2024-04-15 18:01:32 +02:00
|
|
|
|
<ApplicationVersion>140</ApplicationVersion>
|
|
|
|
|
<ApplicationDisplayVersion>1.4.0</ApplicationDisplayVersion>
|
|
|
|
|
<RunAOTCompilation>false</RunAOTCompilation>
|
2023-03-04 11:18:42 +01:00
|
|
|
|
<PublishTrimmed>false</PublishTrimmed>
|
2020-05-30 19:41:49 +02:00
|
|
|
|
</PropertyGroup>
|
2023-02-11 10:16:42 +01:00
|
|
|
|
|
2023-03-04 13:00:30 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
|
<AndroidKeyStore>True</AndroidKeyStore>
|
|
|
|
|
<AndroidSigningKeyStore>../TouchyTicketsAndroid.keystore</AndroidSigningKeyStore>
|
|
|
|
|
<AndroidSigningKeyAlias>TouchyTicketsAndroid</AndroidSigningKeyAlias>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-05-30 19:41:49 +02:00
|
|
|
|
<ItemGroup>
|
2023-02-11 10:16:42 +01:00
|
|
|
|
<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"/>
|
2020-05-30 19:41:49 +02:00
|
|
|
|
</ItemGroup>
|
2023-02-11 10:16:42 +01:00
|
|
|
|
|
2020-05-30 19:41:49 +02:00
|
|
|
|
<ItemGroup>
|
2023-02-11 10:16:42 +01:00
|
|
|
|
<MonoGameContentReference Include="..\TouchyTickets\Content\Content.mgcb"/>
|
|
|
|
|
<None Include="..\TouchyTickets\Content\*\**">
|
|
|
|
|
<Link>Content/%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
|
</None>
|
2020-05-30 19:41:49 +02:00
|
|
|
|
</ItemGroup>
|
2023-02-11 10:16:42 +01:00
|
|
|
|
|
|
|
|
|
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
|
|
|
<Message Text="Restoring dotnet tools" Importance="High"/>
|
|
|
|
|
<Exec Command="dotnet tool restore"/>
|
|
|
|
|
</Target>
|
2024-04-15 17:54:42 +02:00
|
|
|
|
</Project>
|