Orientation.Android.csproj 631 B

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