GemstoneHunter.Android.csproj 871 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-android</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>GemstoneHunter.Android</RootNamespace>
  6. <AssemblyName>GemstoneHunter.Android</AssemblyName>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\Core\GemstoneHunter.Core.csproj" />
  10. <PackageReference Include="MonoGame.Framework.Android" Version="3.8.*" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  14. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  15. </Content>
  16. <Content Include="..\..\Core\Content\**\*.MAP" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. </Content>
  19. </ItemGroup>
  20. </Project>