| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>Audio3D.iOS</RootNamespace>
- <AssemblyName>Audio3D</AssemblyName>
- <AssemblyTitle>Audio3D iOS</AssemblyTitle>
- <Description>iOS platform for Audio3D MonoGame sample.</Description>
- <Authors>CartBlanche</Authors>
- <Company>CartBlanche</Company>
- <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Audio3D.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|