Mercurial > pub > ImplabNet
annotate Implab.Fx/Implab.Fx.csproj @ 96:daffa72a1cec v2
Added the chaining method to the non-generic IPromise
author | cin |
---|---|
date | Thu, 30 Oct 2014 10:06:16 +0300 |
parents | 4439140706d0 |
children | ec91a6dfa5b3 |
rev | line source |
---|---|
3 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
6 <ProductVersion>8.0.30703</ProductVersion> | |
7 <SchemaVersion>2.0</SchemaVersion> | |
8 <ProjectGuid>{06E706F8-6881-43EB-927E-FFC503AF6ABC}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>Implab.Fx</RootNamespace> | |
12 <AssemblyName>Implab.Fx</AssemblyName> | |
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | |
14 <FileAlignment>512</FileAlignment> | |
15 </PropertyGroup> | |
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
17 <DebugSymbols>true</DebugSymbols> | |
18 <DebugType>full</DebugType> | |
19 <Optimize>false</Optimize> | |
20 <OutputPath>bin\Debug\</OutputPath> | |
21 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
22 <ErrorReport>prompt</ErrorReport> | |
23 <WarningLevel>4</WarningLevel> | |
24 </PropertyGroup> | |
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
26 <DebugType>pdbonly</DebugType> | |
27 <Optimize>true</Optimize> | |
28 <OutputPath>bin\Release\</OutputPath> | |
29 <DefineConstants>TRACE</DefineConstants> | |
30 <ErrorReport>prompt</ErrorReport> | |
31 <WarningLevel>4</WarningLevel> | |
32 </PropertyGroup> | |
75 | 33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |
34 <DebugSymbols>true</DebugSymbols> | |
35 <DebugType>full</DebugType> | |
36 <Optimize>false</Optimize> | |
37 <OutputPath>bin\Debug\</OutputPath> | |
38 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
39 <ErrorReport>prompt</ErrorReport> | |
40 <WarningLevel>4</WarningLevel> | |
41 </PropertyGroup> | |
42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
43 <DebugType>pdbonly</DebugType> | |
44 <Optimize>true</Optimize> | |
45 <OutputPath>bin\Release\</OutputPath> | |
46 <DefineConstants>TRACE</DefineConstants> | |
47 <ErrorReport>prompt</ErrorReport> | |
48 <WarningLevel>4</WarningLevel> | |
49 </PropertyGroup> | |
3 | 50 <ItemGroup> |
51 <Reference Include="System" /> | |
52 <Reference Include="System.Core" /> | |
5
f2559580b481
implemented overlay helpers and some animation heplers improvments
cin
parents:
4
diff
changeset
|
53 <Reference Include="System.Drawing" /> |
3 | 54 <Reference Include="System.Windows.Forms" /> |
55 <Reference Include="System.Xml.Linq" /> | |
56 <Reference Include="System.Data.DataSetExtensions" /> | |
57 <Reference Include="Microsoft.CSharp" /> | |
58 <Reference Include="System.Data" /> | |
59 <Reference Include="System.Xml" /> | |
60 </ItemGroup> | |
61 <ItemGroup> | |
4 | 62 <Compile Include="Animation.cs" /> |
63 <Compile Include="AnimationHelpers.cs" /> | |
64 <Compile Include="PromiseHelpers.cs" /> | |
3 | 65 <Compile Include="Properties\AssemblyInfo.cs" /> |
72 | 66 <Compile Include="ControlBoundPromise.cs" /> |
3 | 67 </ItemGroup> |
68 <ItemGroup> | |
69 <ProjectReference Include="..\Implab\Implab.csproj"> | |
72 | 70 <Project>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</Project> |
3 | 71 <Name>Implab</Name> |
72 </ProjectReference> | |
73 </ItemGroup> | |
74 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
75 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
76 Other similar extension points exist, see Microsoft.Common.targets. | |
77 <Target Name="BeforeBuild"> | |
78 </Target> | |
79 <Target Name="AfterBuild"> | |
80 </Target> | |
81 --> | |
82 </Project> |