Input.iOS.csproj 820 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <AssemblyName>MonoGame.Samples.Input.iOS</AssemblyName>
  6. <RootNamespace>MonoGame.Samples.Input.iOS</RootNamespace>
  7. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\Core\Input.Core.csproj" />
  11. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  12. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </Content>
  18. </ItemGroup>
  19. </Project>