| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <RootNamespace>GameComponents.DesktopGL</RootNamespace>
- <AssemblyName>GameComponents</AssemblyName>
- <OutputType>Exe</OutputType>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\GameComponents.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\logo.xnb" Link="Content\logo.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\Arial.xnb" Link="Content\Font.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Include="GameComponents.icns">
- <Link>$(AssemblyName).icns</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|