| 1234567891011121314151617 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>BloomSample.iOS</RootNamespace>
- <AssemblyName>BloomSample</AssemblyName>
- <MonoGamePlatform>iOS</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\BloomSample.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Framework.Content.Pipeline" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
- </ItemGroup>
- </Project>
|