##// END OF EJS Templates
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.

File last commit:

r183:4f82e0f161c3 ref20160224
r196:40d7fed4a09e default
Show More
MonoPlay.csproj
52 lines | 2.1 KiB | text/plain | TextLexer
cin
improved tracing...
r93 <?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>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{15DD7123-D504-4627-8B4F-D00C7F04D033}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>MonoPlay</RootNamespace>
<AssemblyName>MonoPlay</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
cin
Added support for 'await' operator to promises
r151 <ReleaseVersion>0.2</ReleaseVersion>
cin
improved tracing...
r93 </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>
<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>
cin
sync
r103 <ConsolePause>false</ConsolePause>
cin
improved tracing...
r93 </PropertyGroup>
<ItemGroup>
<Reference Include="System" />
cin
fixed DFA optimization, JSON is fully functional
r183 <Reference Include="System.Text.Json">
<HintPath>..\packages\System.Text.Json.2.0.0.11\lib\net40\System.Text.Json.dll</HintPath>
</Reference>
cin
improved tracing...
r93 </ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\Implab\Implab.csproj">
<Project>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</Project>
<Name>Implab</Name>
</ProjectReference>
</ItemGroup>
cin
fixed DFA optimization, JSON is fully functional
r183 <ItemGroup>
<None Include="packages.config" />
</ItemGroup>
cin
improved tracing...
r93 </Project>