| 1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>BloomSample.DesktopGL</RootNamespace>
- <AssemblyName>BloomSample</AssemblyName>
- <MonoGamePlatform>DesktopGL</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\BloomSample.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <PackageReference Include="MonoGame.Framework.Content.Pipeline" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
- </ItemGroup>
- <ItemGroup>
- <None Include="BloomSample.icns">
- <Link>$(AssemblyName).icns</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|