1234567891011121314151617 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-android</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>MonoGame.Orientation.Android</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Orientation.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.Android" Version="3.8.4.0" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|