MBansheeEngine.csproj 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.0</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\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\bin\Assemblies\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Data.DataSetExtensions" />
  40. <Reference Include="Microsoft.CSharp" />
  41. <Reference Include="System.Data" />
  42. <Reference Include="System.Xml" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="BuiltinResources.cs" />
  46. <Compile Include="Color.cs" />
  47. <Compile Include="Font.cs" />
  48. <Compile Include="GUI.cs" />
  49. <Compile Include="GUIArea.cs" />
  50. <Compile Include="GUIBase.cs" />
  51. <Compile Include="GUIButton.cs" />
  52. <Compile Include="GUIContent.cs" />
  53. <Compile Include="GUIElement.cs" />
  54. <Compile Include="GUIElementStateStyle.cs" />
  55. <Compile Include="GUIElementStyle.cs" />
  56. <Compile Include="GUIListBox.cs" />
  57. <Compile Include="GUIScrollArea.cs" />
  58. <Compile Include="GUITextBox.cs" />
  59. <Compile Include="GUILabel.cs" />
  60. <Compile Include="GUILayout.cs" />
  61. <Compile Include="GUILayoutX.cs" />
  62. <Compile Include="GUILayoutY.cs" />
  63. <Compile Include="GUIOption.cs" />
  64. <Compile Include="GUISkin.cs" />
  65. <Compile Include="GUISpace.cs" />
  66. <Compile Include="GUITexture.cs" />
  67. <Compile Include="GUIToggle.cs" />
  68. <Compile Include="GUIToggleGroup.cs" />
  69. <Compile Include="LocString.cs" />
  70. <Compile Include="MathEx.cs" />
  71. <Compile Include="Matrix3.cs" />
  72. <Compile Include="Matrix4.cs" />
  73. <Compile Include="Program.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <Compile Include="Quaternion.cs" />
  76. <Compile Include="Resource.cs" />
  77. <Compile Include="ScriptObject.cs" />
  78. <Compile Include="SpriteTexture.cs" />
  79. <Compile Include="StringTable.cs" />
  80. <Compile Include="Texture2D.cs" />
  81. <Compile Include="TextureFormat.cs" />
  82. <Compile Include="Vector2.cs" />
  83. <Compile Include="Vector3.cs" />
  84. <Compile Include="Vector4.cs" />
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>