RolePlayingGame.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>RolePlaying.iOS</RootNamespace>
  6. <AssemblyName>RolePlayingGame</AssemblyName>
  7. <AssemblyTitle>Role Playing Game - iOS</AssemblyTitle>
  8. <AssemblyDescription>MonoGame Role Playing Game Sample for iOS</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. <RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
  15. <UseInterpreter>true</UseInterpreter>
  16. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  17. <MonoGamePlatform>iOS</MonoGamePlatform>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Core\RolePlaying.Core.csproj" />
  21. <ProjectReference Include="..\..\RolePlayingGameData\RolePlaying.Data.csproj" />
  22. <PackageReference Include="MonoGame.Framework.iOS" 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>