Graphics3DSample.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net9.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <ApplicationIcon />
  7. <StartupObject />
  8. <AssemblyTitle>Graphics3DSample</AssemblyTitle>
  9. <Product>Graphics3DSample</Product>
  10. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  14. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\Core\Graphics3DSample.Core.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. <Content Include="..\..\Core\Content\**\*.xml" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. </Project>