ParticleSample.iOS.csproj 991 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <AssemblyName>ParticleSample</AssemblyName>
  9. <RootNamespace>ParticleSample</RootNamespace>
  10. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  11. <ProvisioningType>manual</ProvisioningType>
  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\ParticleSample.Core.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. </ItemGroup>
  23. </Project>