InputReporter.iOS.csproj 1.1 KB

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