Waypoint.iOS.csproj 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{75E860EE-EBF1-4BB4-AE39-9729900AFD39}</ProjectGuid>
  9. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>MonoGame.Samples.Waypoint</RootNamespace>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
  18. <DefineConstants>DEBUG;IPHONE</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <MtouchDebug>True</MtouchDebug>
  22. <CodesignKey>iPhone Developer</CodesignKey>
  23. <MtouchLink>None</MtouchLink>
  24. <MtouchI18n />
  25. <AssemblyName>Waypoint</AssemblyName>
  26. <MtouchUseArmv7>false</MtouchUseArmv7>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
  29. <DebugType>none</DebugType>
  30. <Optimize>False</Optimize>
  31. <OutputPath>bin\iPhoneSimulator\Release</OutputPath>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <CodesignKey>iPhone Developer</CodesignKey>
  35. <MtouchLink>None</MtouchLink>
  36. <DefineConstants>IPHONE</DefineConstants>
  37. <MtouchI18n />
  38. <AssemblyName>Waypoint</AssemblyName>
  39. <MtouchUseArmv7>false</MtouchUseArmv7>
  40. <MtouchSdkVersion>3.0</MtouchSdkVersion>
  41. </PropertyGroup>
  42. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
  43. <DebugSymbols>True</DebugSymbols>
  44. <DebugType>full</DebugType>
  45. <Optimize>False</Optimize>
  46. <OutputPath>bin\iPhone\Debug</OutputPath>
  47. <DefineConstants>DEBUG;IPHONE</DefineConstants>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. <MtouchDebug>True</MtouchDebug>
  51. <CodesignKey>iPhone Developer</CodesignKey>
  52. <MtouchLink>None</MtouchLink>
  53. <MtouchI18n />
  54. <AssemblyName>Waypoint</AssemblyName>
  55. <MtouchUseArmv7>false</MtouchUseArmv7>
  56. <MtouchSdkVersion>3.0</MtouchSdkVersion>
  57. </PropertyGroup>
  58. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  59. <DebugType>none</DebugType>
  60. <Optimize>False</Optimize>
  61. <OutputPath>bin\iPhone\Release</OutputPath>
  62. <ErrorReport>prompt</ErrorReport>
  63. <WarningLevel>4</WarningLevel>
  64. <CodesignKey>iPhone Developer</CodesignKey>
  65. <DefineConstants>IPHONE</DefineConstants>
  66. <AssemblyName>Waypoint</AssemblyName>
  67. <MtouchUseArmv7>false</MtouchUseArmv7>
  68. <MtouchSdkVersion>3.0</MtouchSdkVersion>
  69. </PropertyGroup>
  70. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Distribution|iPhone' ">
  71. <DebugType>none</DebugType>
  72. <Optimize>False</Optimize>
  73. <OutputPath>bin</OutputPath>
  74. <WarningLevel>4</WarningLevel>
  75. <CodesignKey>iPhone Developer</CodesignKey>
  76. <AssemblyName>MonoGame.Samples.Waypoint</AssemblyName>
  77. <MtouchUseArmv7>false</MtouchUseArmv7>
  78. <MtouchSdkVersion>3.0</MtouchSdkVersion>
  79. </PropertyGroup>
  80. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Distribution|iPhoneSimulator' ">
  81. <DebugType>none</DebugType>
  82. <Optimize>False</Optimize>
  83. <OutputPath>bin\Distribution</OutputPath>
  84. <WarningLevel>4</WarningLevel>
  85. <AssemblyName>MonoGameSamplesWaypoint</AssemblyName>
  86. </PropertyGroup>
  87. <ItemGroup>
  88. <Reference Include="System" />
  89. <Reference Include="System.Xml" />
  90. <Reference Include="System.Core" />
  91. <Reference Include="monotouch" />
  92. <Reference Include="OpenTK" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <Compile Include="Main.cs" />
  96. <Compile Include="Tank.cs" />
  97. <Compile Include="WaypointList.cs" />
  98. <Compile Include="WaypointSample.cs" />
  99. <Compile Include="Behaviors\Behavior.cs" />
  100. <Compile Include="Behaviors\LinearBehavior.cs" />
  101. <Compile Include="Behaviors\SteeringBehavior.cs" />
  102. </ItemGroup>
  103. <ItemGroup>
  104. <Folder Include="Content\" />
  105. <Folder Include="Behaviors\" />
  106. </ItemGroup>
  107. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  108. <ItemGroup>
  109. <Content Include="Content\cursor.png">
  110. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  111. </Content>
  112. <Content Include="Content\dot.png">
  113. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  114. </Content>
  115. <Content Include="Content\tank.png">
  116. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  117. </Content>
  118. <Content Include="Default.png">
  119. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  120. </Content>
  121. <Content Include="Content\HUDFont.xnb">
  122. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  123. </Content>
  124. </ItemGroup>
  125. <ItemGroup>
  126. <None Include="GameThumbnail.png" />
  127. <None Include="Info.iOS.plist">
  128. <Link>Info.plist</Link>
  129. </None>
  130. </ItemGroup>
  131. </Project>