| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{876EB338-489E-4727-84DA-8CBBF0DA5B5E}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>BansheeEngine</RootNamespace>
- <AssemblyName>MBansheeEngine</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <TargetFrameworkProfile />
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\bin\Assemblies\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\bin\Assemblies\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="BuiltinResources.cs" />
- <Compile Include="Color.cs" />
- <Compile Include="Font.cs" />
- <Compile Include="GUI.cs" />
- <Compile Include="GUIArea.cs" />
- <Compile Include="GUIBase.cs" />
- <Compile Include="GUIButton.cs" />
- <Compile Include="GUIContent.cs" />
- <Compile Include="GUIElement.cs" />
- <Compile Include="GUIElementStateStyle.cs" />
- <Compile Include="GUIElementStyle.cs" />
- <Compile Include="GUIListBox.cs" />
- <Compile Include="GUIScrollArea.cs" />
- <Compile Include="GUITextBox.cs" />
- <Compile Include="GUILabel.cs" />
- <Compile Include="GUILayout.cs" />
- <Compile Include="GUILayoutX.cs" />
- <Compile Include="GUILayoutY.cs" />
- <Compile Include="GUIOption.cs" />
- <Compile Include="GUISkin.cs" />
- <Compile Include="GUISpace.cs" />
- <Compile Include="GUITexture.cs" />
- <Compile Include="GUIToggle.cs" />
- <Compile Include="GUIToggleGroup.cs" />
- <Compile Include="LocString.cs" />
- <Compile Include="MathEx.cs" />
- <Compile Include="Matrix3.cs" />
- <Compile Include="Matrix4.cs" />
- <Compile Include="Program.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Quaternion.cs" />
- <Compile Include="Resource.cs" />
- <Compile Include="ScriptObject.cs" />
- <Compile Include="SpriteTexture.cs" />
- <Compile Include="StringTable.cs" />
- <Compile Include="Texture2D.cs" />
- <Compile Include="TextureFormat.cs" />
- <Compile Include="Vector2.cs" />
- <Compile Include="Vector3.cs" />
- <Compile Include="Vector4.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|