Sound.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!-- .xnb copy ItemGroup moved inside <Project> below -->
  2. <Project Sdk="Microsoft.NET.Sdk">
  3. <PropertyGroup>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <OutputType>Exe</OutputType>
  6. <RootNamespace>Sound</RootNamespace>
  7. <AssemblyName>Sound</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. <MonoGamePlatform>DesktopGL</MonoGamePlatform>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\Core\Sound.Core.csproj" />
  19. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  20. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
  24. <Link>Content\Content.mgcb</Link>
  25. </MonoGameContentReference>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <None Include="Sound.icns">
  29. <Link>$(AssemblyName).icns</Link>
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </None>
  32. </ItemGroup>
  33. </Project>