RolePlayingGame.csproj 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>RolePlaying.Desktop</RootNamespace>
  6. <AssemblyName>RolePlayingGame</AssemblyName>
  7. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  8. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  9. <MonoGamePlatform>DesktopGL</MonoGamePlatform>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\..\Core\RolePlaying.Core.csproj" />
  13. <ProjectReference Include="..\..\RolePlayingGameData\RolePlaying.Data.csproj" />
  14. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  15. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <None Include="RolePlayingGame.icns">
  22. <Link>$(AssemblyName).icns</Link>
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. </None>
  25. </ItemGroup>
  26. </Project>