| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>RolePlaying.Desktop</RootNamespace>
- <AssemblyName>RolePlayingGame</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
- <MonoGamePlatform>DesktopGL</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\RolePlaying.Core.csproj" />
- <ProjectReference Include="..\..\RolePlayingGameData\RolePlaying.Data.csproj" />
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
- </ItemGroup>
- <ItemGroup>
- <None Include="RolePlayingGame.icns">
- <Link>$(AssemblyName).icns</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|