BloomSample.csproj 871 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>BloomSample.DesktopGL</RootNamespace>
  6. <AssemblyName>BloomSample</AssemblyName>
  7. <MonoGamePlatform>DesktopGL</MonoGamePlatform>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\Core\BloomSample.Core.csproj" />
  11. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  12. <PackageReference Include="MonoGame.Framework.Content.Pipeline" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Include="BloomSample.icns">
  19. <Link>$(AssemblyName).icns</Link>
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </None>
  22. </ItemGroup>
  23. </Project>