2
0

MonoGame.Samples.Peer2Peer.iOS.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{1217FD6D-AFF5-4A21-AA0C-0AE7F14B848F}</ProjectGuid>
  9. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>MonoGame.Samples.Peer2Peer</RootNamespace>
  12. <AssemblyName>MonoGameSamplesPeer2Peer</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
  19. <DefineConstants>DEBUG;IPHONE</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <MtouchLink>None</MtouchLink>
  23. <MtouchDebug>true</MtouchDebug>
  24. <ConsolePause>false</ConsolePause>
  25. <MtouchI18n />
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
  28. <DebugType>none</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>bin\iPhoneSimulator\Release</OutputPath>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <MtouchLink>None</MtouchLink>
  34. <ConsolePause>false</ConsolePause>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>bin\iPhone\Debug</OutputPath>
  41. <DefineConstants>DEBUG</DefineConstants>
  42. <ErrorReport>prompt</ErrorReport>
  43. <WarningLevel>4</WarningLevel>
  44. <MtouchDebug>true</MtouchDebug>
  45. <CodesignKey>iPhone Developer</CodesignKey>
  46. <ConsolePause>false</ConsolePause>
  47. </PropertyGroup>
  48. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  49. <DebugType>none</DebugType>
  50. <Optimize>false</Optimize>
  51. <OutputPath>bin\iPhone\Release</OutputPath>
  52. <ErrorReport>prompt</ErrorReport>
  53. <WarningLevel>4</WarningLevel>
  54. <ConsolePause>false</ConsolePause>
  55. <CodesignKey>iPhone Developer</CodesignKey>
  56. </PropertyGroup>
  57. <ItemGroup>
  58. <Reference Include="System" />
  59. <Reference Include="System.Xml" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="monotouch" />
  62. <Reference Include="OpenTK" />
  63. </ItemGroup>
  64. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  65. <ItemGroup>
  66. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.iOS.csproj">
  67. <Project>{DB8508BB-9849-4CC2-BC0F-8EB5DACB3C47}</Project>
  68. <Name>MonoGame.Framework.iOS</Name>
  69. </ProjectReference>
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="Info.iOS.plist"><Link>Info.plist</Link></None>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="Program.cs" />
  76. <Compile Include="PeerToPeerGame.cs">
  77. <Link>PeerToPeerGame.cs</Link>
  78. </Compile>
  79. <Compile Include="Tank.cs">
  80. <Link>Tank.cs</Link>
  81. </Compile>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Content Include="Content\gamepad.png">
  85. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  86. </Content>
  87. <Content Include="Content\Tank.xnb">
  88. <Link>Content\Tank.xnb</Link>
  89. </Content>
  90. <Content Include="Content\Font.xnb">
  91. <Link>Content\Font.xnb</Link>
  92. </Content>
  93. <Content Include="Content\Turret.xnb">
  94. <Link>Content\Turret.xnb</Link>
  95. </Content>
  96. </ItemGroup>
  97. </Project>