Urho.Desktop.csproj 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{F0359D5E-D6D4-47D3-A9F0-5A97C31DC476}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Urho</RootNamespace>
  11. <AssemblyName>Urho</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\Bin\Desktop\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <DocumentationFile>
  33. </DocumentationFile>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="Microsoft.CSharp" />
  39. <Reference Include="System.Xml" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="Desktop\UrhoEngine.cs" />
  43. <Compile Include="Portable\Actions\ActionManager.cs" />
  44. <Compile Include="Portable\Actions\Base\Action.cs" />
  45. <Compile Include="Portable\Actions\Base\AmplitudeAction.cs" />
  46. <Compile Include="Portable\Actions\Base\FiniteTimeAction.cs" />
  47. <Compile Include="Portable\Actions\Base\Speed.cs" />
  48. <Compile Include="Portable\Actions\Ease\ActionEase.cs" />
  49. <Compile Include="Portable\Actions\Ease\EaseBackIn.cs" />
  50. <Compile Include="Portable\Actions\Ease\EaseBackInOut.cs" />
  51. <Compile Include="Portable\Actions\Ease\EaseBackOut.cs" />
  52. <Compile Include="Portable\Actions\Ease\EaseBounceIn.cs" />
  53. <Compile Include="Portable\Actions\Ease\EaseBounceInOut.cs" />
  54. <Compile Include="Portable\Actions\Ease\EaseBounceOut.cs" />
  55. <Compile Include="Portable\Actions\Ease\EaseCustom.cs" />
  56. <Compile Include="Portable\Actions\Ease\EaseElastic.cs" />
  57. <Compile Include="Portable\Actions\Ease\EaseElasticIn.cs" />
  58. <Compile Include="Portable\Actions\Ease\EaseElasticInOut.cs" />
  59. <Compile Include="Portable\Actions\Ease\EaseElasticOut.cs" />
  60. <Compile Include="Portable\Actions\Ease\EaseExponentialIn.cs" />
  61. <Compile Include="Portable\Actions\Ease\EaseExponentialInOut.cs" />
  62. <Compile Include="Portable\Actions\Ease\EaseExponentialOut.cs" />
  63. <Compile Include="Portable\Actions\Ease\EaseIn.cs" />
  64. <Compile Include="Portable\Actions\Ease\EaseInOut.cs" />
  65. <Compile Include="Portable\Actions\Ease\EaseOut.cs" />
  66. <Compile Include="Portable\Actions\Ease\EaseRateAction.cs" />
  67. <Compile Include="Portable\Actions\Ease\EaseSineIn.cs" />
  68. <Compile Include="Portable\Actions\Ease\EaseSineInOut.cs" />
  69. <Compile Include="Portable\Actions\Ease\EaseSineOut.cs" />
  70. <Compile Include="Portable\Actions\Instants\ActionInstant.cs" />
  71. <Compile Include="Portable\Actions\Instants\Callfunc\CallFunc.cs" />
  72. <Compile Include="Portable\Actions\Instants\Callfunc\CallFuncN.cs" />
  73. <Compile Include="Portable\Actions\Instants\Callfunc\CallFuncND.cs" />
  74. <Compile Include="Portable\Actions\Instants\Callfunc\CallFuncO.cs" />
  75. <Compile Include="Portable\Actions\Instants\Hide.cs" />
  76. <Compile Include="Portable\Actions\Instants\Place.cs" />
  77. <Compile Include="Portable\Actions\Instants\RemoveSelf.cs" />
  78. <Compile Include="Portable\Actions\Instants\Show.cs" />
  79. <Compile Include="Portable\Actions\Instants\ToggleVisibility.cs" />
  80. <Compile Include="Portable\Actions\Intervals\ActionTween.cs" />
  81. <Compile Include="Portable\Actions\Intervals\BezierBy.cs" />
  82. <Compile Include="Portable\Actions\Intervals\BezierTo.cs" />
  83. <Compile Include="Portable\Actions\Intervals\Blink.cs" />
  84. <Compile Include="Portable\Actions\Intervals\DelayTime.cs" />
  85. <Compile Include="Portable\Actions\Intervals\ExtraAction.cs" />
  86. <Compile Include="Portable\Actions\Intervals\FadeIn.cs" />
  87. <Compile Include="Portable\Actions\Intervals\FadeOut.cs" />
  88. <Compile Include="Portable\Actions\Intervals\FadeTo.cs" />
  89. <Compile Include="Portable\Actions\Intervals\JumpBy.cs" />
  90. <Compile Include="Portable\Actions\Intervals\JumpTo.cs" />
  91. <Compile Include="Portable\Actions\Intervals\MoveBy.cs" />
  92. <Compile Include="Portable\Actions\Intervals\MoveTo.cs" />
  93. <Compile Include="Portable\Actions\Intervals\Parallel.cs" />
  94. <Compile Include="Portable\Actions\Intervals\Repeat.cs" />
  95. <Compile Include="Portable\Actions\Intervals\RepeatForever.cs" />
  96. <Compile Include="Portable\Actions\Intervals\ReverseTime.cs" />
  97. <Compile Include="Portable\Actions\Intervals\RotateBy.cs" />
  98. <Compile Include="Portable\Actions\Intervals\RotateTo.cs" />
  99. <Compile Include="Portable\Actions\Intervals\ScaleBy.cs" />
  100. <Compile Include="Portable\Actions\Intervals\ScaleTo.cs" />
  101. <Compile Include="Portable\Actions\Intervals\Sequence.cs" />
  102. <Compile Include="Portable\Actions\Intervals\Spawn.cs" />
  103. <Compile Include="Portable\Actions\Intervals\TargetedAction.cs" />
  104. <Compile Include="Portable\Actions\Intervals\TintBy.cs" />
  105. <Compile Include="Portable\Actions\Intervals\TintTo.cs" />
  106. <Compile Include="Portable\Actions\Node.cs" />
  107. <Compile Include="Portable\Application.cs" />
  108. <Compile Include="Portable\ApplicationOptions.cs" />
  109. <Compile Include="Portable\AttributeInfo.cs" />
  110. <Compile Include="Portable\BillboardSet.cs" />
  111. <Compile Include="Portable\BufferedSoundStream.cs" />
  112. <Compile Include="Portable\Collision.cs" />
  113. <Compile Include="Portable\Component.cs" />
  114. <Compile Include="Portable\Connection.cs" />
  115. <Compile Include="Portable\Consts.cs" />
  116. <Compile Include="Portable\Controls.cs" />
  117. <Compile Include="Portable\Enums.cs" />
  118. <Compile Include="Portable\External\IntVector2.cs" />
  119. <Compile Include="Portable\External\MathHelper.cs" />
  120. <Compile Include="Portable\External\Matrix3.cs" />
  121. <Compile Include="Portable\External\Matrix4.cs" />
  122. <Compile Include="Portable\External\Plane.cs" />
  123. <Compile Include="Portable\External\Quaternion.cs" />
  124. <Compile Include="Portable\External\Vector2.cs" />
  125. <Compile Include="Portable\External\Vector3.cs" />
  126. <Compile Include="Portable\External\Vector4.cs" />
  127. <Compile Include="Portable\Generated\Animatable.cs" />
  128. <Compile Include="Portable\Generated\AnimatedModel.cs" />
  129. <Compile Include="Portable\Generated\AnimatedSprite2D.cs" />
  130. <Compile Include="Portable\Generated\Animation.cs" />
  131. <Compile Include="Portable\Generated\AnimationController.cs" />
  132. <Compile Include="Portable\Generated\AnimationSet2D.cs" />
  133. <Compile Include="Portable\Generated\AnimationState.cs" />
  134. <Compile Include="Portable\Generated\Application.cs" />
  135. <Compile Include="Portable\Generated\AsyncLoadState.cs" />
  136. <Compile Include="Portable\Generated\AttributeAccessor.cs" />
  137. <Compile Include="Portable\Generated\AttributeAnimationInfo.cs" />
  138. <Compile Include="Portable\Generated\Audio.cs" />
  139. <Compile Include="Portable\Generated\BackgroundLoader.cs" />
  140. <Compile Include="Portable\Generated\BillboardSet.cs" />
  141. <Compile Include="Portable\Generated\BlendMode.cs" />
  142. <Compile Include="Portable\Generated\BodyType2D.cs" />
  143. <Compile Include="Portable\Generated\BorderImage.cs" />
  144. <Compile Include="Portable\Generated\BufferedSoundStream.cs" />
  145. <Compile Include="Portable\Generated\Button.cs" />
  146. <Compile Include="Portable\Generated\Camera.cs" />
  147. <Compile Include="Portable\Generated\CheckBox.cs" />
  148. <Compile Include="Portable\Generated\CollisionBox2D.cs" />
  149. <Compile Include="Portable\Generated\CollisionChain2D.cs" />
  150. <Compile Include="Portable\Generated\CollisionCircle2D.cs" />
  151. <Compile Include="Portable\Generated\CollisionEdge2D.cs" />
  152. <Compile Include="Portable\Generated\CollisionEventMode.cs" />
  153. <Compile Include="Portable\Generated\CollisionGeometryData.cs" />
  154. <Compile Include="Portable\Generated\CollisionPolygon2D.cs" />
  155. <Compile Include="Portable\Generated\CollisionShape.cs" />
  156. <Compile Include="Portable\Generated\CollisionShape2D.cs" />
  157. <Compile Include="Portable\Generated\CompareMode.cs" />
  158. <Compile Include="Portable\Generated\Component.cs" />
  159. <Compile Include="Portable\Generated\CompressedFormat.cs" />
  160. <Compile Include="Portable\Generated\Connection.cs" />
  161. <Compile Include="Portable\Generated\ConstantBuffer.cs" />
  162. <Compile Include="Portable\Generated\Constraint.cs" />
  163. <Compile Include="Portable\Generated\Constraint2D.cs" />
  164. <Compile Include="Portable\Generated\ConstraintDistance2D.cs" />
  165. <Compile Include="Portable\Generated\ConstraintFriction2D.cs" />
  166. <Compile Include="Portable\Generated\ConstraintGear2D.cs" />
  167. <Compile Include="Portable\Generated\ConstraintMotor2D.cs" />
  168. <Compile Include="Portable\Generated\ConstraintMouse2D.cs" />
  169. <Compile Include="Portable\Generated\ConstraintPrismatic2D.cs" />
  170. <Compile Include="Portable\Generated\ConstraintPulley2D.cs" />
  171. <Compile Include="Portable\Generated\ConstraintRevolute2D.cs" />
  172. <Compile Include="Portable\Generated\ConstraintRope2D.cs" />
  173. <Compile Include="Portable\Generated\ConstraintType.cs" />
  174. <Compile Include="Portable\Generated\ConstraintWeld2D.cs" />
  175. <Compile Include="Portable\Generated\ConstraintWheel2D.cs" />
  176. <Compile Include="Portable\Generated\Context.cs" />
  177. <Compile Include="Portable\Generated\ConvexData.cs" />
  178. <Compile Include="Portable\Generated\Corner.cs" />
  179. <Compile Include="Portable\Generated\CreateMode.cs" />
  180. <Compile Include="Portable\Generated\CrowdAgent.cs" />
  181. <Compile Include="Portable\Generated\CrowdAgentRequestedTarget.cs" />
  182. <Compile Include="Portable\Generated\CrowdAgentState.cs" />
  183. <Compile Include="Portable\Generated\CrowdAgentTargetState.cs" />
  184. <Compile Include="Portable\Generated\CrowdManager.cs" />
  185. <Compile Include="Portable\Generated\CubeMapFace.cs" />
  186. <Compile Include="Portable\Generated\CubeMapLayout.cs" />
  187. <Compile Include="Portable\Generated\CullMode.cs" />
  188. <Compile Include="Portable\Generated\Cursor.cs" />
  189. <Compile Include="Portable\Generated\CursorShape.cs" />
  190. <Compile Include="Portable\Generated\CustomGeometry.cs" />
  191. <Compile Include="Portable\Generated\DebugHud.cs" />
  192. <Compile Include="Portable\Generated\DebugRenderer.cs" />
  193. <Compile Include="Portable\Generated\DecalSet.cs" />
  194. <Compile Include="Portable\Generated\DeferredLightPSVariation.cs" />
  195. <Compile Include="Portable\Generated\DeferredLightVSVariation.cs" />
  196. <Compile Include="Portable\Generated\Drawable.cs" />
  197. <Compile Include="Portable\Generated\Drawable2D.cs" />
  198. <Compile Include="Portable\Generated\DropDownList.cs" />
  199. <Compile Include="Portable\Generated\DynamicNavigationMesh.cs" />
  200. <Compile Include="Portable\Generated\EmitterType.cs" />
  201. <Compile Include="Portable\Generated\EmitterType2D.cs" />
  202. <Compile Include="Portable\Generated\Engine.cs" />
  203. <Compile Include="Portable\Generated\FaceCameraMode.cs" />
  204. <Compile Include="Portable\Generated\File.cs" />
  205. <Compile Include="Portable\Generated\FileMode.cs" />
  206. <Compile Include="Portable\Generated\FileSelector.cs" />
  207. <Compile Include="Portable\Generated\FileSystem.cs" />
  208. <Compile Include="Portable\Generated\FileWatcher.cs" />
  209. <Compile Include="Portable\Generated\FillMode.cs" />
  210. <Compile Include="Portable\Generated\FocusMode.cs" />
  211. <Compile Include="Portable\Generated\Font.cs" />
  212. <Compile Include="Portable\Generated\FontFace.cs" />
  213. <Compile Include="Portable\Generated\FontFaceBitmap.cs" />
  214. <Compile Include="Portable\Generated\FontFaceFreeType.cs" />
  215. <Compile Include="Portable\Generated\FONT_TYPE.cs" />
  216. <Compile Include="Portable\Generated\FrustumPlane.cs" />
  217. <Compile Include="Portable\Generated\Geometry.cs" />
  218. <Compile Include="Portable\Generated\GeometryType.cs" />
  219. <Compile Include="Portable\Generated\Graphics.cs" />
  220. <Compile Include="Portable\Generated\HeightfieldData.cs" />
  221. <Compile Include="Portable\Generated\HighlightMode.cs" />
  222. <Compile Include="Portable\Generated\HorizontalAlignment.cs" />
  223. <Compile Include="Portable\Generated\HttpRequest.cs" />
  224. <Compile Include="Portable\Generated\HttpRequestState.cs" />
  225. <Compile Include="Portable\Generated\Image.cs" />
  226. <Compile Include="Portable\Generated\IndexBuffer.cs" />
  227. <Compile Include="Portable\Generated\Input.cs" />
  228. <Compile Include="Portable\Generated\InterpMethod.cs" />
  229. <Compile Include="Portable\Generated\InterpolationMode.cs" />
  230. <Compile Include="Portable\Generated\Intersection.cs" />
  231. <Compile Include="Portable\Generated\JsonFile.cs" />
  232. <Compile Include="Portable\Generated\JsonNumberType.cs" />
  233. <Compile Include="Portable\Generated\JsonValueType.cs" />
  234. <Compile Include="Portable\Generated\LayoutMode.cs" />
  235. <Compile Include="Portable\Generated\Light.cs" />
  236. <Compile Include="Portable\Generated\LightPSVariation.cs" />
  237. <Compile Include="Portable\Generated\LightType.cs" />
  238. <Compile Include="Portable\Generated\LightVSVariation.cs" />
  239. <Compile Include="Portable\Generated\LineEdit.cs" />
  240. <Compile Include="Portable\Generated\ListView.cs" />
  241. <Compile Include="Portable\Generated\LoadMode.cs" />
  242. <Compile Include="Portable\Generated\LockState.cs" />
  243. <Compile Include="Portable\Generated\Log.cs" />
  244. <Compile Include="Portable\Generated\LogicComponent.cs" />
  245. <Compile Include="Portable\Generated\LoopMode2D.cs" />
  246. <Compile Include="Portable\Generated\Material.cs" />
  247. <Compile Include="Portable\Generated\Menu.cs" />
  248. <Compile Include="Portable\Generated\MessageBox.cs" />
  249. <Compile Include="Portable\Generated\Model.cs" />
  250. <Compile Include="Portable\Generated\MouseMode.cs" />
  251. <Compile Include="Portable\Generated\NavArea.cs" />
  252. <Compile Include="Portable\Generated\Navigable.cs" />
  253. <Compile Include="Portable\Generated\NavigationMesh.cs" />
  254. <Compile Include="Portable\Generated\NavigationPushiness.cs" />
  255. <Compile Include="Portable\Generated\NavigationQuality.cs" />
  256. <Compile Include="Portable\Generated\NavmeshPartitionType.cs" />
  257. <Compile Include="Portable\Generated\Network.cs" />
  258. <Compile Include="Portable\Generated\NetworkPriority.cs" />
  259. <Compile Include="Portable\Generated\Node.cs" />
  260. <Compile Include="Portable\Generated\Object.Events.cs" />
  261. <Compile Include="Portable\Generated\ObjectAnimation.cs" />
  262. <Compile Include="Portable\Generated\ObjectFactory.cs" />
  263. <Compile Include="Portable\Generated\ObserverPositionSendMode.cs" />
  264. <Compile Include="Portable\Generated\Obstacle.cs" />
  265. <Compile Include="Portable\Generated\OcclusionBuffer.cs" />
  266. <Compile Include="Portable\Generated\Octree.cs" />
  267. <Compile Include="Portable\Generated\OffMeshConnection.cs" />
  268. <Compile Include="Portable\Generated\OggVorbisSoundStream.cs" />
  269. <Compile Include="Portable\Generated\Orientation.cs" />
  270. <Compile Include="Portable\Generated\Orientation2D.cs" />
  271. <Compile Include="Portable\Generated\PackageFile.cs" />
  272. <Compile Include="Portable\Generated\ParticleEffect.cs" />
  273. <Compile Include="Portable\Generated\ParticleEffect2D.cs" />
  274. <Compile Include="Portable\Generated\ParticleEmitter.cs" />
  275. <Compile Include="Portable\Generated\ParticleEmitter2D.cs" />
  276. <Compile Include="Portable\Generated\Pass.cs" />
  277. <Compile Include="Portable\Generated\PassLightingMode.cs" />
  278. <Compile Include="Portable\Generated\PhysicsWorld.cs" />
  279. <Compile Include="Portable\Generated\PhysicsWorld2D.cs" />
  280. <Compile Include="Portable\Generated\PListFile.cs" />
  281. <Compile Include="Portable\Generated\PListValueType.cs" />
  282. <Compile Include="Portable\Generated\PodVectors.cs" />
  283. <Compile Include="Portable\Generated\PrimitiveType.cs" />
  284. <Compile Include="Portable\Generated\Profiler.cs" />
  285. <Compile Include="Portable\Generated\PropertySet2D.cs" />
  286. <Compile Include="Portable\Generated\RayQueryLevel.cs" />
  287. <Compile Include="Portable\Generated\RefCounted.cs" />
  288. <Compile Include="Portable\Generated\RenderCommandSortMode.cs" />
  289. <Compile Include="Portable\Generated\RenderCommandType.cs" />
  290. <Compile Include="Portable\Generated\Renderer.cs" />
  291. <Compile Include="Portable\Generated\Renderer2D.cs" />
  292. <Compile Include="Portable\Generated\RenderPath.cs" />
  293. <Compile Include="Portable\Generated\RenderSurface.cs" />
  294. <Compile Include="Portable\Generated\RenderSurfaceUpdateMode.cs" />
  295. <Compile Include="Portable\Generated\RenderTargetSizeMode.cs" />
  296. <Compile Include="Portable\Generated\Resource.cs" />
  297. <Compile Include="Portable\Generated\ResourceCache.cs" />
  298. <Compile Include="Portable\Generated\ResourceRequest.cs" />
  299. <Compile Include="Portable\Generated\ResourceRouter.cs" />
  300. <Compile Include="Portable\Generated\RigidBody.cs" />
  301. <Compile Include="Portable\Generated\RigidBody2D.cs" />
  302. <Compile Include="Portable\Generated\Scene.cs" />
  303. <Compile Include="Portable\Generated\ScrollBar.cs" />
  304. <Compile Include="Portable\Generated\ScrollView.cs" />
  305. <Compile Include="Portable\Generated\Serializable.cs" />
  306. <Compile Include="Portable\Generated\Shader.cs" />
  307. <Compile Include="Portable\Generated\ShaderParameterAnimationInfo.cs" />
  308. <Compile Include="Portable\Generated\ShaderParameterGroup.cs" />
  309. <Compile Include="Portable\Generated\ShaderPrecache.cs" />
  310. <Compile Include="Portable\Generated\ShaderProgram.cs" />
  311. <Compile Include="Portable\Generated\ShaderType.cs" />
  312. <Compile Include="Portable\Generated\ShaderVariation.cs" />
  313. <Compile Include="Portable\Generated\ShapeType.cs" />
  314. <Compile Include="Portable\Generated\Skeleton.cs" />
  315. <Compile Include="Portable\Generated\Skybox.cs" />
  316. <Compile Include="Portable\Generated\Slider.cs" />
  317. <Compile Include="Portable\Generated\SmoothedTransform.cs" />
  318. <Compile Include="Portable\Generated\Sound.cs" />
  319. <Compile Include="Portable\Generated\SoundListener.cs" />
  320. <Compile Include="Portable\Generated\SoundSource.cs" />
  321. <Compile Include="Portable\Generated\SoundSource3D.cs" />
  322. <Compile Include="Portable\Generated\SoundStream.cs" />
  323. <Compile Include="Portable\Generated\SplinePath.cs" />
  324. <Compile Include="Portable\Generated\Sprite.cs" />
  325. <Compile Include="Portable\Generated\Sprite2D.cs" />
  326. <Compile Include="Portable\Generated\SpriteSheet2D.cs" />
  327. <Compile Include="Portable\Generated\StaticModel.cs" />
  328. <Compile Include="Portable\Generated\StaticModelGroup.cs" />
  329. <Compile Include="Portable\Generated\StaticSprite2D.cs" />
  330. <Compile Include="Portable\Generated\StencilOp.cs" />
  331. <Compile Include="Portable\Generated\Technique.cs" />
  332. <Compile Include="Portable\Generated\Terrain.cs" />
  333. <Compile Include="Portable\Generated\TerrainPatch.cs" />
  334. <Compile Include="Portable\Generated\Text.cs" />
  335. <Compile Include="Portable\Generated\Text3D.cs" />
  336. <Compile Include="Portable\Generated\TextEffect.cs" />
  337. <Compile Include="Portable\Generated\Texture.cs" />
  338. <Compile Include="Portable\Generated\Texture2D.cs" />
  339. <Compile Include="Portable\Generated\Texture3D.cs" />
  340. <Compile Include="Portable\Generated\TextureAddressMode.cs" />
  341. <Compile Include="Portable\Generated\TextureCoordinate.cs" />
  342. <Compile Include="Portable\Generated\TextureCube.cs" />
  343. <Compile Include="Portable\Generated\TextureFilterMode.cs" />
  344. <Compile Include="Portable\Generated\TextureUnit.cs" />
  345. <Compile Include="Portable\Generated\TextureUsage.cs" />
  346. <Compile Include="Portable\Generated\Tile2D.cs" />
  347. <Compile Include="Portable\Generated\TileMap2D.cs" />
  348. <Compile Include="Portable\Generated\TileMapLayer2D.cs" />
  349. <Compile Include="Portable\Generated\TileMapLayerType2D.cs" />
  350. <Compile Include="Portable\Generated\TileMapObject2D.cs" />
  351. <Compile Include="Portable\Generated\TileMapObjectType2D.cs" />
  352. <Compile Include="Portable\Generated\Time.cs" />
  353. <Compile Include="Portable\Generated\TmxFile2D.cs" />
  354. <Compile Include="Portable\Generated\TmxImageLayer2D.cs" />
  355. <Compile Include="Portable\Generated\TmxLayer2D.cs" />
  356. <Compile Include="Portable\Generated\TmxObjectGroup2D.cs" />
  357. <Compile Include="Portable\Generated\TmxTileLayer2D.cs" />
  358. <Compile Include="Portable\Generated\ToolTip.cs" />
  359. <Compile Include="Portable\Generated\TransformSpace.cs" />
  360. <Compile Include="Portable\Generated\TraversalMode.cs" />
  361. <Compile Include="Portable\Generated\TriangleMeshData.cs" />
  362. <Compile Include="Portable\Generated\UI.cs" />
  363. <Compile Include="Portable\Generated\UIElement.cs" />
  364. <Compile Include="Portable\Generated\UnknownComponent.cs" />
  365. <Compile Include="Portable\Generated\UpdateGeometryType.cs" />
  366. <Compile Include="Portable\Generated\UrhoConsole.cs" />
  367. <Compile Include="Portable\Generated\UrhoObject.cs" />
  368. <Compile Include="Portable\Generated\ValueAnimation.cs" />
  369. <Compile Include="Portable\Generated\ValueAnimationInfo.cs" />
  370. <Compile Include="Portable\Generated\VariantType.cs" />
  371. <Compile Include="Portable\Generated\VertexBuffer.cs" />
  372. <Compile Include="Portable\Generated\VertexElement.cs" />
  373. <Compile Include="Portable\Generated\VertexLightVSVariation.cs" />
  374. <Compile Include="Portable\Generated\VerticalAlignment.cs" />
  375. <Compile Include="Portable\Generated\View.cs" />
  376. <Compile Include="Portable\Generated\View3D.cs" />
  377. <Compile Include="Portable\Generated\Viewport.cs" />
  378. <Compile Include="Portable\Generated\Window.cs" />
  379. <Compile Include="Portable\Generated\WindowDragMode.cs" />
  380. <Compile Include="Portable\Generated\WorkQueue.cs" />
  381. <Compile Include="Portable\Generated\WrapMode.cs" />
  382. <Compile Include="Portable\Generated\XmlElement.cs" />
  383. <Compile Include="Portable\Generated\XmlFile.cs" />
  384. <Compile Include="Portable\Generated\Zone.cs" />
  385. <Compile Include="Portable\IndexBuffer.cs" />
  386. <Compile Include="Portable\Input.cs" />
  387. <Compile Include="Portable\ListBasedUpdateSynchronizationContext.cs" />
  388. <Compile Include="Portable\Log.cs" />
  389. <Compile Include="Portable\MarshalHelper.cs" />
  390. <Compile Include="Portable\Math\EaseMath.cs" />
  391. <Compile Include="Portable\Math\SplineMath.cs" />
  392. <Compile Include="Portable\Model.cs" />
  393. <Compile Include="Portable\MonoDebugHud.cs" />
  394. <Compile Include="Portable\NavigationMesh.cs" />
  395. <Compile Include="Portable\Network.cs" />
  396. <Compile Include="Portable\Node.cs" />
  397. <Compile Include="Portable\Object.cs" />
  398. <Compile Include="Portable\Octree.cs" />
  399. <Compile Include="Portable\PodVector.cs" />
  400. <Compile Include="Portable\RefCounted.cs" />
  401. <Compile Include="Portable\ResourceCache.cs" />
  402. <Compile Include="Portable\Runtime\IComponentSerializer.cs" />
  403. <Compile Include="Portable\Runtime\MonoPInvokeCallbackAttribute.cs" />
  404. <Compile Include="Portable\Runtime\RefCountedCache.cs" />
  405. <Compile Include="Portable\Runtime\ReferenceHolder.cs" />
  406. <Compile Include="Portable\Runtime\Runtime.cs" />
  407. <Compile Include="Portable\Runtime\Subscription.cs" />
  408. <Compile Include="Portable\Runtime\UrhoEventAdapter.cs" />
  409. <Compile Include="Portable\Runtime\Vectors.cs" />
  410. <Compile Include="Portable\Scene.cs" />
  411. <Compile Include="Portable\Shapes\Box.cs" />
  412. <Compile Include="Portable\Shapes\Cone.cs" />
  413. <Compile Include="Portable\Shapes\Cylinder.cs" />
  414. <Compile Include="Portable\Shapes\Plane.cs" />
  415. <Compile Include="Portable\Shapes\Pyramid.cs" />
  416. <Compile Include="Portable\Shapes\Shape.cs" />
  417. <Compile Include="Portable\Shapes\Sphere.cs" />
  418. <Compile Include="Portable\Shapes\Torus.cs" />
  419. <Compile Include="Portable\Skeleton.cs" />
  420. <Compile Include="Portable\StringHash.cs" />
  421. <Compile Include="Portable\Structs.cs" />
  422. <Compile Include="Portable\Stubs.cs" />
  423. <Compile Include="Portable\UI.cs" />
  424. <Compile Include="Portable\UIElement.cs" />
  425. <Compile Include="Portable\UrhoConsole.cs" />
  426. <Compile Include="Portable\UrhoMap.cs" />
  427. <Compile Include="Portable\VertexBuffer.cs" />
  428. <Compile Include="Portable\Viewport.cs" />
  429. <Compile Include="Portable\XmlElement.cs" />
  430. <Compile Include="Properties\AssemblyInfo.cs" />
  431. </ItemGroup>
  432. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  433. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  434. Other similar extension points exist, see Microsoft.Common.targets.
  435. <Target Name="BeforeBuild">
  436. </Target>
  437. <Target Name="AfterBuild">
  438. </Target>
  439. -->
  440. </Project>