Sound.csproj 1.1 KB

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