MBansheeEngine.csproj 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{876EB338-489E-4727-84DA-8CBBF0DA5B5E}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BansheeEngine</RootNamespace>
  11. <AssemblyName>MBansheeEngine</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. <ProductVersion>10.0.0</ProductVersion>
  16. <SchemaVersion>2.0</SchemaVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\..\bin\Assemblies\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <UseVSHostingProcess>false</UseVSHostingProcess>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>none</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>..\..\..\bin\Assemblies\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <CSFile Include="*.cs" />
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="Animation\Animation.cs" />
  43. <Compile Include="GUI\GUICanvas.cs" />
  44. <Compile Include="GUI\GUIScrollBar.cs" />
  45. <Compile Include="Math\Line2.cs" />
  46. <Compile Include="Math\Plane.cs" />
  47. <Compile Include="Rendering\Material.cs" />
  48. <Compile Include="Serialization\LayerMask.cs" />
  49. <Compile Include="Serialization\ShowInInspector.cs" />
  50. <Compile Include="Serialization\Step.cs" />
  51. <Compile Include="Utility\AsyncOp.cs" />
  52. <Compile Include="Math\Bounds.cs" />
  53. <Compile Include="Utility\Builtin.cs" />
  54. <Compile Include="GUI\GUI.cs" />
  55. <Compile Include="GUI\GUIListView.cs" />
  56. <Compile Include="GUI\GUIWidget.cs" />
  57. <Compile Include="Utility\Layers.cs" />
  58. <Compile Include="Math\Capsule.cs" />
  59. <Compile Include="Math\LineSegment.cs" />
  60. <Compile Include="GUI\ContextMenu.cs" />
  61. <Compile Include="Utility\Cursor.cs" />
  62. <Compile Include="Utility\Debug.cs" />
  63. <Compile Include="Utility\Color.cs" />
  64. <Compile Include="Scene\Component.cs" />
  65. <Compile Include="Utility\DirectoryEx.cs" />
  66. <Compile Include="Serialization\DontSerializeField.cs" />
  67. <Compile Include="Utility\FileEx.cs" />
  68. <Compile Include="Scene\GameObject.cs" />
  69. <Compile Include="GUI\GUIUtility.cs" />
  70. <Compile Include="GUI\GUIButton.cs" />
  71. <Compile Include="GUI\GUIContent.cs" />
  72. <Compile Include="GUI\GUIElement.cs" />
  73. <Compile Include="GUI\GUIElementStateStyle.cs" />
  74. <Compile Include="GUI\GUIElementStyle.cs" />
  75. <Compile Include="GUI\GUIListBox.cs" />
  76. <Compile Include="GUI\GUIPanel.cs" />
  77. <Compile Include="GUI\GUIProgressBar.cs" />
  78. <Compile Include="GUI\GUIRenderTexture.cs" />
  79. <Compile Include="GUI\GUIScrollArea.cs" />
  80. <Compile Include="GUI\GUISlider.cs" />
  81. <Compile Include="GUI\GUITextBox.cs" />
  82. <Compile Include="GUI\GUILabel.cs" />
  83. <Compile Include="GUI\GUILayout.cs" />
  84. <Compile Include="GUI\GUILayoutX.cs" />
  85. <Compile Include="GUI\GUILayoutY.cs" />
  86. <Compile Include="GUI\GUIOption.cs" />
  87. <Compile Include="GUI\GUISkin.cs" />
  88. <Compile Include="GUI\GUISpace.cs" />
  89. <Compile Include="GUI\GUITexture.cs" />
  90. <Compile Include="GUI\GUIToggle.cs" />
  91. <Compile Include="GUI\GUIToggleGroup.cs" />
  92. <Compile Include="Serialization\HideInInspector.cs" />
  93. <Compile Include="Input\Input.cs" />
  94. <Compile Include="Input\InputConfiguration.cs" />
  95. <Compile Include="Interop\NativeGUIWidget.cs" />
  96. <Compile Include="GUI\LocString.cs" />
  97. <Compile Include="Resources\ManagedResource.cs" />
  98. <Compile Include="Math\AABox.cs" />
  99. <Compile Include="Math\BsRect3.cs" />
  100. <Compile Include="Math\Degree.cs" />
  101. <Compile Include="Math\MathEx.cs" />
  102. <Compile Include="Math\Matrix3.cs" />
  103. <Compile Include="Math\Matrix4.cs" />
  104. <Compile Include="Math\Radian.cs" />
  105. <Compile Include="Math\Ray.cs" />
  106. <Compile Include="Math\Rect2.cs" />
  107. <Compile Include="Math\Rect2I.cs" />
  108. <Compile Include="Math\Vector2I.cs" />
  109. <Compile Include="Rendering\Mesh.cs" />
  110. <Compile Include="Scene\MissingComponent.cs" />
  111. <Compile Include="Utility\PathEx.cs" />
  112. <Compile Include="Utility\PixelUtility.cs" />
  113. <Compile Include="Utility\PlainText.cs" />
  114. <Compile Include="Scene\Prefab.cs" />
  115. <Compile Include="Interop\Program.cs" />
  116. <Compile Include="Properties\AssemblyInfo.cs" />
  117. <Compile Include="Math\Quaternion.cs" />
  118. <Compile Include="Serialization\Range.cs" />
  119. <Compile Include="Resources\Resource.cs" />
  120. <Compile Include="Resources\ResourceRef.cs" />
  121. <Compile Include="Resources\Resources.cs" />
  122. <Compile Include="Scene\RunInEditor.cs" />
  123. <Compile Include="Scene\Scene.cs" />
  124. <Compile Include="Scene\SceneObject.cs" />
  125. <Compile Include="Utility\ScriptCode.cs" />
  126. <Compile Include="Interop\ScriptObject.cs" />
  127. <Compile Include="Serialization\SerializableArray.cs" />
  128. <Compile Include="Serialization\SerializableDictionary.cs" />
  129. <Compile Include="Serialization\SerializableField.cs" />
  130. <Compile Include="Serialization\SerializableList.cs" />
  131. <Compile Include="Serialization\SerializableObject.cs" />
  132. <Compile Include="Serialization\SerializableProperty.cs" />
  133. <Compile Include="Serialization\SerializableUtility.cs" />
  134. <Compile Include="Serialization\SerializeObject.cs" />
  135. <Compile Include="Serialization\SerializeField.cs" />
  136. <Compile Include="Rendering\ShaderInclude.cs" />
  137. <Compile Include="GUI\ShortcutKey.cs" />
  138. <Compile Include="Math\Sphere.cs" />
  139. <Compile Include="Rendering\Texture.cs" />
  140. <Compile Include="Math\Vector2.cs" />
  141. <Compile Include="Math\Vector3.cs" />
  142. <Compile Include="Math\Vector4.cs" />
  143. <Compile Include="Utility\Time.cs" />
  144. <Compile Include="Input\VirtualInput.cs" />
  145. <Compile Include="Generated\*.cs" />
  146. </ItemGroup>
  147. <ItemGroup />
  148. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  149. <PropertyGroup>
  150. <PostBuildEvent Condition=" '$(OS)' != 'Unix' ">"$(ProjectDir)..\..\..\Scripts\pdb2mdb.bat" "$(TargetPath)" "$(ConfigurationName)"</PostBuildEvent>
  151. </PropertyGroup>
  152. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  153. Other similar extension points exist, see Microsoft.Common.targets.
  154. <Target Name="BeforeBuild">
  155. </Target>
  156. <Target Name="AfterBuild">
  157. </Target>
  158. -->
  159. </Project>