RolePlayingGame.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0-windows</TargetFramework>
  4. <OutputType>WinExe</OutputType>
  5. <RootNamespace>RolePlaying.Windows</RootNamespace>
  6. <AssemblyName>RolePlayingGame</AssemblyName>
  7. <AssemblyTitle>Role Playing Game - Windows</AssemblyTitle>
  8. <AssemblyDescription>MonoGame Role Playing Game Sample for Windows</AssemblyDescription>
  9. <AssemblyCompany>MonoGame Samples</AssemblyCompany>
  10. <AssemblyProduct>Role Playing Game</AssemblyProduct>
  11. <AssemblyCopyright>Copyright (c) 2011 Kenneth J. Pouncey - MIT License</AssemblyCopyright>
  12. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  13. <FileVersion>1.0.0.0</FileVersion>
  14. <UseWindowsForms>true</UseWindowsForms>
  15. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  16. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  17. <MonoGamePlatform>Windows</MonoGamePlatform>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Core\RolePlaying.Core.csproj" />
  21. <ProjectReference Include="..\..\RolePlayingGameData\RolePlaying.Data.csproj" />
  22. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  23. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
  27. </ItemGroup>
  28. </Project>