1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0-ios</TargetFramework>
- <AssemblyName>FloodControl</AssemblyName>
- <RootNamespace>Flood_Control</RootNamespace>
- <Nullable>disable</Nullable>
- <ApplicationId>com.floodcontrol.game</ApplicationId>
- <ApplicationVersion>1</ApplicationVersion>
- <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
- <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- <ProjectReference Include="..\..\Core\FloodControl.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" CopyToOutputDirectory="PreserveNewest" />
- </ItemGroup>
- </Project>
|