Graphics3DSample.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <AssemblyTitle>Graphics3DSample</AssemblyTitle>
  6. <Product>Graphics3DSample</Product>
  7. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  11. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\Core\Graphics3DSample.Core.csproj" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </Content>
  20. <Content Include="..\..\Core\Content\**\*.xml" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. </ItemGroup>
  24. <ItemGroup>
  25. <None Include="Graphics3DSample.icns">
  26. <Link>$(AssemblyName).icns</Link>
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </None>
  29. </ItemGroup>
  30. </Project>