GooCursor.Android.csproj 1010 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-android</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
  9. <AndroidUseAapt2>true</AndroidUseAapt2>
  10. <AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
  11. <EnableMGCBItems>false</EnableMGCBItems>
  12. <DefineConstants>ANDROID</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="../../Core/GooCursor.Core.csproj" />
  16. <PackageReference Include="MonoGame.Framework.Android" Version="3.8.*" />
  17. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  18. </ItemGroup>
  19. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. </Project>