| 12345678910111213141516171819202122232425262728293031323334353637 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net9.0</TargetFramework>
- <AssemblyTitle>Graphics3DSample</AssemblyTitle>
- <Product>Graphics3DSample</Product>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Graphics3DSample.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Core\Content\**\*.xml" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Include="Graphics3DSample.icns">
- <Link>$(AssemblyName).icns</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|