Peer2Peer.iOS.csproj 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <None Include="Info.iOS.plist">
  67. <Link>Info.plist</Link>
  68. </None>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="Program.cs" />
  72. <Compile Include="PeerToPeerGame.cs">
  73. <Link>PeerToPeerGame.cs</Link>
  74. </Compile>
  75. <Compile Include="Tank.cs">
  76. <Link>Tank.cs</Link>
  77. </Compile>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Content Include="Content\gamepad.png">
  81. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  82. </Content>
  83. <Content Include="Content\Tank.xnb">
  84. <Link>Content\Tank.xnb</Link>
  85. </Content>
  86. <Content Include="Content\Font.xnb">
  87. <Link>Content\Font.xnb</Link>
  88. </Content>
  89. <Content Include="Content\Turret.xnb">
  90. <Link>Content\Turret.xnb</Link>
  91. </Content>
  92. </ItemGroup>
  93. </Project>