| 1234567891011121314151617181920212223242526272829303132 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>RolePlaying.iOS</RootNamespace>
- <AssemblyName>RolePlayingGame</AssemblyName>
- <AssemblyTitle>Role Playing Game - iOS</AssemblyTitle>
- <AssemblyDescription>MonoGame Role Playing Game Sample for iOS</AssemblyDescription>
- <AssemblyCompany>MonoGame Samples</AssemblyCompany>
- <AssemblyProduct>Role Playing Game</AssemblyProduct>
- <AssemblyCopyright>Copyright (c) 2011 Kenneth J. Pouncey - MIT License</AssemblyCopyright>
- <AssemblyVersion>1.0.0.0</AssemblyVersion>
- <FileVersion>1.0.0.0</FileVersion>
- <RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
- <UseInterpreter>true</UseInterpreter>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <MonoGamePlatform>iOS</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\RolePlaying.Core.csproj" />
- <ProjectReference Include="..\..\RolePlayingGameData\RolePlaying.Data.csproj" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
- </ItemGroup>
- </Project>
|