annotate Implab.Test/Implab.Test.mono.csproj @ 196:40d7fed4a09e

fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
author cin
date Mon, 29 Aug 2016 23:15:51 +0300
parents 822aab37b107
children 4d9830a9bbb8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
77
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
3 <PropertyGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
6 <ProductVersion>8.0.30703</ProductVersion>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
7 <SchemaVersion>2.0</SchemaVersion>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
8 <ProjectGuid>{2BD05F84-E067-4B87-9477-FDC2676A21C6}</ProjectGuid>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
9 <OutputType>Library</OutputType>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
10 <RootNamespace>Implab.Test</RootNamespace>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
11 <AssemblyName>Implab.Test</AssemblyName>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
151
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 145
diff changeset
13 <ReleaseVersion>0.2</ReleaseVersion>
77
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
14 </PropertyGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
16 <DebugSymbols>true</DebugSymbols>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
17 <DebugType>full</DebugType>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
18 <Optimize>false</Optimize>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
19 <OutputPath>bin\Debug</OutputPath>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
20 <DefineConstants>DEBUG;MONO</DefineConstants>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
21 <ErrorReport>prompt</ErrorReport>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
22 <WarningLevel>4</WarningLevel>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
23 <ConsolePause>false</ConsolePause>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
24 </PropertyGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
26 <Optimize>true</Optimize>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
27 <OutputPath>bin\Release</OutputPath>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
28 <ErrorReport>prompt</ErrorReport>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
29 <WarningLevel>4</WarningLevel>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
30 <ConsolePause>false</ConsolePause>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
31 <DefineConstants>MONO</DefineConstants>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
32 </PropertyGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' ">
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
34 <DebugSymbols>true</DebugSymbols>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
35 <DebugType>full</DebugType>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
36 <Optimize>false</Optimize>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
37 <OutputPath>bin\Debug</OutputPath>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
38 <DefineConstants>DEBUG;TRACE;NET_4_5;MONO</DefineConstants>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
39 <ErrorReport>prompt</ErrorReport>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
40 <WarningLevel>4</WarningLevel>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
41 <ConsolePause>false</ConsolePause>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
42 </PropertyGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' ">
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
44 <Optimize>true</Optimize>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
45 <OutputPath>bin\Release</OutputPath>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
46 <DefineConstants>NET_4_5;MONO</DefineConstants>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
47 <ErrorReport>prompt</ErrorReport>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
48 <WarningLevel>4</WarningLevel>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
49 <ConsolePause>false</ConsolePause>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
50 </PropertyGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
51 <ItemGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
52 <Reference Include="System" />
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
53 <Reference Include="nunit.framework" />
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
54 </ItemGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
55 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
56 <ItemGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
57 <Compile Include="AsyncTests.cs" />
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
58 <Compile Include="PromiseHelper.cs" />
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
59 <Compile Include="Properties\AssemblyInfo.cs" />
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 77
diff changeset
60 <Compile Include="CancelationTests.cs" />
185
822aab37b107 runnable component, work in progress
cin
parents: 151
diff changeset
61 <Compile Include="RunnableComponentTests.cs" />
77
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
62 </ItemGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
63 <ItemGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
64 <ProjectReference Include="..\Implab\Implab.csproj">
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
65 <Project>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</Project>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
66 <Name>Implab</Name>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
67 </ProjectReference>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
68 </ItemGroup>
91362ffbecf8 ported tests to mono
cin
parents:
diff changeset
69 </Project>