##// END OF EJS Templates
Bound promise to CancellationToken...
Bound promise to CancellationToken Added new states to ExecutionSate enum. Added Safe.Guard() method to handle cleanup of the result of the promise

File last commit:

r188:3071220371f8 ref20160224
r209:a867536c68fc v2
Show More
Implab.Test.csproj
83 lines | 3.6 KiB | text/plain | TextLexer
user@factory.site.local
initial commit...
r0 <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
cin
promises refactoring
r72 <ProductVersion>8.0.30703</ProductVersion>
user@factory.site.local
initial commit...
r0 <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{63F92C0C-61BF-48C0-A377-8D67C3C661D0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Implab.Test</RootNamespace>
<AssemblyName>Implab.Test</AssemblyName>
cin
minor fixes for vs2012
r155 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
user@factory.site.local
initial commit...
r0 <FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
cin
minor fixes for vs2012
r155 <TargetFrameworkProfile />
user@factory.site.local
initial commit...
r0 </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
cin
minor fixes for vs2012
r155 <Prefer32Bit>false</Prefer32Bit>
user@factory.site.local
initial commit...
r0 </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
cin
minor fixes for vs2012
r155 <Prefer32Bit>false</Prefer32Bit>
user@factory.site.local
initial commit...
r0 </PropertyGroup>
cin
major refactoring, added tasks support
r75 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
cin
minor fixes for vs2012
r155 <Prefer32Bit>false</Prefer32Bit>
cin
major refactoring, added tasks support
r75 </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
cin
minor fixes for vs2012
r155 <Prefer32Bit>false</Prefer32Bit>
cin
major refactoring, added tasks support
r75 </PropertyGroup>
user@factory.site.local
initial commit...
r0 <ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AsyncTests.cs" />
cin
Updated VS project
r188 <Compile Include="CancelationTests.cs" />
cin
implemeted new cancellable promises concept
r10 <Compile Include="PromiseHelper.cs" />
user@factory.site.local
initial commit...
r0 <Compile Include="Properties\AssemblyInfo.cs" />
cin
Updated VS project
r188 <Compile Include="RunnableComponentTests.cs" />
user@factory.site.local
initial commit...
r0 </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Implab\Implab.csproj">
<Project>{99B95D0D-9CF9-4F70-8ADF-F4D0AA5CB0D9}</Project>
<Name>Implab</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\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>