43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0-android</TargetFramework>
|
|
<SupportedOSPlatformVersion>23</SupportedOSPlatformVersion>
|
|
<OutputType>Exe</OutputType>
|
|
<ApplicationId>com.MyCompany.MyGame</ApplicationId>
|
|
<ApplicationVersion>1</ApplicationVersion>
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
|
|
<AndroidUseSharedRuntime>true</AndroidUseSharedRuntime>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
|
|
<PackageReference Include="MonoGame.Framework.Android" Version="3.8.1.303" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MonoGameContentReference Include="../../Shared/Content/Content.mgcb">
|
|
<Link>Content/Content.mgcb</Link>
|
|
</MonoGameContentReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../../Shared/Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
<Message Text="Restoring dotnet tools" Importance="High" />
|
|
<Exec Command="dotnet tool restore" />
|
|
</Target>
|
|
|
|
<!-- TODO: Currently I have no idea how to set this up properly and am in a hurry so... Find a better solution for the bellow -->
|
|
|
|
<!-- Windows-specific settings -->
|
|
<!-- <PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">
|
|
<JavaSdkDirectory>C:/Program Files/Java/jdk-17.0.5</JavaSdkDirectory>
|
|
<AndroidSdkDirectory>C:/android-sdk</AndroidSdkDirectory>
|
|
</PropertyGroup> -->
|
|
|
|
</Project>
|