FloodControl.iOS.csproj 907 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-ios</TargetFramework>
  5. <AssemblyName>FloodControl</AssemblyName>
  6. <RootNamespace>Flood_Control</RootNamespace>
  7. <Nullable>disable</Nullable>
  8. <ApplicationId>com.floodcontrol.game</ApplicationId>
  9. <ApplicationVersion>1</ApplicationVersion>
  10. <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
  11. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  15. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  16. <ProjectReference Include="..\..\Core\FloodControl.Core.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Content Include="..\..\Core\Content\**\*.xnb" CopyToOutputDirectory="PreserveNewest" />
  20. </ItemGroup>
  21. </Project>