BouncingBox.Android.csproj 772 B

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