1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>InputReporter</RootNamespace>
- <AssemblyName>InputReporter.iOS</AssemblyName>
- <SupportedOSPlatformVersion>14.0</SupportedOSPlatformVersion>
- <ImplicitUsings>false</ImplicitUsings>
- <Nullable>disable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\InputReporter.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Core\Content\**\*.xml" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|