2
0

RenderTarget2D.iOS.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{0A404652-27C9-40AA-B037-5665BC725621}</ProjectGuid>
  9. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>RenderTarget2D</RootNamespace>
  12. <AssemblyName>RenderTarget2D</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. <DefineConstants>IPHONE</DefineConstants>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
  38. <DebugSymbols>True</DebugSymbols>
  39. <DebugType>full</DebugType>
  40. <Optimize>False</Optimize>
  41. <OutputPath>bin\iPhone\Debug</OutputPath>
  42. <DefineConstants>DEBUG;IPHONE</DefineConstants>
  43. <ErrorReport>prompt</ErrorReport>
  44. <WarningLevel>4</WarningLevel>
  45. <MtouchDebug>True</MtouchDebug>
  46. <CodesignKey>iPhone Developer</CodesignKey>
  47. <ConsolePause>False</ConsolePause>
  48. <MtouchI18n />
  49. </PropertyGroup>
  50. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  51. <DebugType>none</DebugType>
  52. <Optimize>False</Optimize>
  53. <OutputPath>bin\iPhone\Release</OutputPath>
  54. <ErrorReport>prompt</ErrorReport>
  55. <WarningLevel>4</WarningLevel>
  56. <ConsolePause>False</ConsolePause>
  57. <CodesignKey>iPhone Developer</CodesignKey>
  58. <DefineConstants>IPHONE</DefineConstants>
  59. </PropertyGroup>
  60. <ItemGroup>
  61. <Reference Include="System" />
  62. <Reference Include="System.Xml" />
  63. <Reference Include="System.Core" />
  64. <Reference Include="monotouch" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <None Include="Info.iOS.plist">
  68. <Link>Info.plist</Link>
  69. </None>
  70. <None Include="Background.png">
  71. <Link>Background.png</Link>
  72. </None>
  73. <None Include="GameThumbnail.png">
  74. <Link>GameThumbnail.png</Link>
  75. </None>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Compile Include="Game1.cs">
  79. <Link>Game1.cs</Link>
  80. </Compile>
  81. <Compile Include="Program.cs" />
  82. </ItemGroup>
  83. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  84. <ItemGroup>
  85. <Content Include="Content\MooTheMerciless.xnb">
  86. <Link>Content\MooTheMerciless.xnb</Link>
  87. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  88. </Content>
  89. <Content Include="Content\wood.xnb">
  90. <Link>Content\wood.xnb</Link>
  91. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  92. </Content>
  93. </ItemGroup>
  94. </Project>