Mercurial > pub > ImplabNet
annotate Implab.Fx/Implab.Fx.csproj @ 151:ec91a6dfa5b3 v2
Added support for 'await' operator to promises
author | cin |
---|---|
date | Thu, 04 Feb 2016 02:43:05 +0300 |
parents | 4439140706d0 |
children | 037df317f126 |
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> | |
151 | 15 <ReleaseVersion>0.2</ReleaseVersion> |
3 | 16 </PropertyGroup> |
17 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
18 <DebugSymbols>true</DebugSymbols> | |
19 <DebugType>full</DebugType> | |
20 <Optimize>false</Optimize> | |
21 <OutputPath>bin\Debug\</OutputPath> | |
22 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
23 <ErrorReport>prompt</ErrorReport> | |
24 <WarningLevel>4</WarningLevel> | |
25 </PropertyGroup> | |
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
27 <DebugType>pdbonly</DebugType> | |
28 <Optimize>true</Optimize> | |
29 <OutputPath>bin\Release\</OutputPath> | |
30 <DefineConstants>TRACE</DefineConstants> | |
31 <ErrorReport>prompt</ErrorReport> | |
32 <WarningLevel>4</WarningLevel> | |
33 </PropertyGroup> | |
75 | 34 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |
35 <DebugSymbols>true</DebugSymbols> | |
36 <DebugType>full</DebugType> | |
37 <Optimize>false</Optimize> | |
38 <OutputPath>bin\Debug\</OutputPath> | |
39 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
40 <ErrorReport>prompt</ErrorReport> | |
41 <WarningLevel>4</WarningLevel> | |
42 </PropertyGroup> | |
43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
44 <DebugType>pdbonly</DebugType> | |
45 <Optimize>true</Optimize> | |
46 <OutputPath>bin\Release\</OutputPath> | |
47 <DefineConstants>TRACE</DefineConstants> | |
48 <ErrorReport>prompt</ErrorReport> | |
49 <WarningLevel>4</WarningLevel> | |
50 </PropertyGroup> | |
3 | 51 <ItemGroup> |
52 <Reference Include="System" /> | |
53 <Reference Include="System.Core" /> | |
5
f2559580b481
implemented overlay helpers and some animation heplers improvments
cin
parents:
4
diff
changeset
|
54 <Reference Include="System.Drawing" /> |
3 | 55 <Reference Include="System.Windows.Forms" /> |
56 <Reference Include="System.Xml.Linq" /> | |
57 <Reference Include="System.Data.DataSetExtensions" /> | |
58 <Reference Include="Microsoft.CSharp" /> | |
59 <Reference Include="System.Data" /> | |
60 <Reference Include="System.Xml" /> | |
61 </ItemGroup> | |
62 <ItemGroup> | |
4 | 63 <Compile Include="Animation.cs" /> |
64 <Compile Include="AnimationHelpers.cs" /> | |
65 <Compile Include="PromiseHelpers.cs" /> | |
3 | 66 <Compile Include="Properties\AssemblyInfo.cs" /> |
72 | 67 <Compile Include="ControlBoundPromise.cs" /> |
3 | 68 </ItemGroup> |
69 <ItemGroup> | |
70 <ProjectReference Include="..\Implab\Implab.csproj"> | |
72 | 71 <Project>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</Project> |
3 | 72 <Name>Implab</Name> |
73 </ProjectReference> | |
74 </ItemGroup> | |
75 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
76 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
77 Other similar extension points exist, see Microsoft.Common.targets. | |
78 <Target Name="BeforeBuild"> | |
79 </Target> | |
80 <Target Name="AfterBuild"> | |
81 </Target> | |
82 --> | |
83 </Project> |