ParticleSample.DesktopGL.csproj 946 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <AssemblyName>ParticleSample</AssemblyName>
  9. <RootNamespace>ParticleSample</RootNamespace>
  10. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  14. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  15. <ProjectReference Include="..\..\Core\ParticleSample.Core.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </Content>
  21. </ItemGroup>
  22. </Project>