##// END OF EJS Templates
removed the reference to the parent from the promise object this allows...
removed the reference to the parent from the promise object this allows resolved promises to release parents and results they are holding. Added complete set of operations to IPromiseBase interface Subscribing to the cancellation event of the promise should not affect it's IsExclusive property More tests.

File last commit:

r25:9bf5b23650c9 default
r33:b255e4aeef17 default
Show More
Implab.csproj
56 lines | 2.4 KiB | text/plain | TextLexer
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Implab</RootNamespace>
<AssemblyName>Implab</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="ICancellable.cs" />
<Compile Include="IProgressHandler.cs" />
<Compile Include="IProgressNotifier.cs" />
<Compile Include="IPromise.cs" />
<Compile Include="IPromiseBase.cs" />
<Compile Include="ITaskController.cs" />
<Compile Include="ManagedPromise.cs" />
<Compile Include="Parallels\DispatchPool.cs" />
<Compile Include="Parallels\ArrayTraits.cs" />
<Compile Include="Parallels\MTQueue.cs" />
<Compile Include="Parallels\WorkerPool.cs" />
<Compile Include="PromiseState.cs" />
<Compile Include="TaskController.cs" />
<Compile Include="ProgressInitEventArgs.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Promise.cs" />
<Compile Include="Parallels\AsyncPool.cs" />
<Compile Include="Safe.cs" />
<Compile Include="ValueEventArgs.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup />
</Project>