ReachGraphicsDemo.iOS.csproj 967 B

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>XnaGraphicsDemo</RootNamespace>
  6. <AssemblyName>XnaGraphicsDemo</AssemblyName>
  7. <SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
  8. <Nullable>enable</Nullable>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  12. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Core\ReachGraphicsDemo.Core.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <BundleResource Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </BundleResource>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <None Include="Platforms\iOS\Info.plist" />
  24. </ItemGroup>
  25. </Project>