| 12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0-android</TargetFramework>
- <RootNamespace>StateObject.Android</RootNamespace>
- <AssemblyName>StateObjectAndroid</AssemblyName>
- <Description>Android platform for StateObject sample</Description>
- <Company>Microsoft</Company>
- <Product>StateObjectWindows</Product>
- <Copyright>Copyright © Microsoft 2010</Copyright>
- <Version>1.0.0.0</Version>
- <MonoGamePlatform>Android</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\StateObject.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.Android" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- </Project>
|