| 1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0-ios</TargetFramework>
- <AssemblyName>BouncingBox</AssemblyName>
- <RootNamespace>Microsoft.Xna.Samples.BouncingBox</RootNamespace>
- <Nullable>disable</Nullable>
- <SupportedOSPlatformVersion>12.0</SupportedOSPlatformVersion>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\BouncingBox.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|