Sound.csproj 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <!-- .xnb copy ItemGroup moved inside <Project> below -->
  2. <Project Sdk="Microsoft.NET.Sdk">
  3. <PropertyGroup>
  4. <TargetFramework>net9.0-windows</TargetFramework>
  5. <OutputType>WinExe</OutputType>
  6. <RootNamespace>Sound</RootNamespace>
  7. <AssemblyName>Sound.Windows</AssemblyName>
  8. <UseWindowsForms>true</UseWindowsForms>
  9. <Nullable>enable</Nullable>
  10. <Description></Description>
  11. <Company></Company>
  12. <Product>Sound</Product>
  13. <Copyright>Copyright © 2011</Copyright>
  14. <Version>1.0.0.0</Version>
  15. <FileVersion>1.0.0.0</FileVersion>
  16. <MonoGamePlatform>Windows</MonoGamePlatform>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\..\Core\Sound.Core.csproj" />
  20. <PackageReference Include="MonoGame.Framework.WindowsDX" 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>