Sound.csproj 955 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>Sound</RootNamespace>
  6. <AssemblyName>Sound.iOS</AssemblyName>
  7. <Nullable>enable</Nullable>
  8. <Description></Description>
  9. <Company></Company>
  10. <Product>Sound</Product>
  11. <Copyright>Copyright © 2011</Copyright>
  12. <Version>1.0.0.0</Version>
  13. <FileVersion>1.0.0.0</FileVersion>
  14. <MonoGamePlatform>iOS</MonoGamePlatform>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\Core\Sound.Core.csproj" />
  18. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  19. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
  23. <Link>Content\Content.mgcb</Link>
  24. </MonoGameContentReference>
  25. </ItemGroup>
  26. </Project>