Skip to content

Commit c7170ea

Browse files
committed
Merge branch 'development' of https://git01.codeplex.com/casablanca into development
2 parents 3454b26 + e07a74a commit c7170ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+71
-2342
lines changed

Build/Common.Build.settings

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@
8989
<CompileAsManaged Condition="'$(CompileAsManagedDefault)' != ''">true</CompileAsManaged>
9090
<AdditionalOptions Condition="'$(DevToolsVersion)'=='140' And '$(ApplicationType)'!='Android'"> /d2notypeopt %(AdditionalOptions)</AdditionalOptions>
9191
</ClCompile>
92+
<ResourceCompile>
93+
<AdditionalOptions>/DTARGET_NAME="$(TARGETNAME)" %(AdditionalOptions)</AdditionalOptions>
94+
</ResourceCompile>
9295
</ItemDefinitionGroup>
9396

9497
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
@@ -189,7 +192,7 @@
189192

190193
<!--end paths configuration -->
191194
<Target Name="CopyToOutputDirectoryAlwaysError"
192-
Condition="'@(Content)'!='' or '@(None)'!=''">
195+
Condition="'@(Content)'!='' or '@(None)'!=''">
193196
<Error Condition="'%(Content.CopyToOutputDirectory)'=='Always'" Text="CopyToOutputDirectory is not allowed to be 'Always'. Use 'PreserveNewest' instead." File="$(MSBuildProjectFile)" />
194197
<Error Condition="'%(None.CopyToOutputDirectory)'=='Always'" Text="CopyToOutputDirectory is not allowed to be 'Always'. Use 'PreserveNewest' instead." File="$(MSBuildProjectFile)" />
195198
</Target>
@@ -222,7 +225,7 @@
222225
<!-- Remove all items from _ResolvedProjectReferencePaths that have non-default value for CopyToOutputDirectory -->
223226
<Target Name="Cleanup_ResolvedProjectReferencePaths"
224227
BeforeTargets="ResolveAssemblyReferences"
225-
Condition="'@(_ResolvedProjectReferencePaths)' != ''">
228+
Condition="'@(_ResolvedProjectReferencePaths)' != ''">
226229
<Message Text="Before Cleanup_ResolvedProjectReferencePaths (CopyToOutputDirectory = %(CopyToOutputDirectory)): @(_ResolvedProjectReferencePaths)"
227230
Importance="Low" />
228231
<ItemGroup>

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ simonlep
1919
jracle
2020
gandziej
2121
adish
22+
LeonidCSIT
2223

2324
AutoDesk Inc.
2425
Cyrille Fauvel (cyrillef)
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by Resource.rc
4+
5+
// Next default values for new objects
6+
//
7+
#ifdef APSTUDIO_INVOKED
8+
#ifndef APSTUDIO_READONLY_SYMBOLS
9+
#define _APS_NEXT_RESOURCE_VALUE 101
10+
#define _APS_NEXT_COMMAND_VALUE 40001
11+
#define _APS_NEXT_CONTROL_VALUE 1001
12+
#define _APS_NEXT_SYMED_VALUE 101
13+
#endif
14+
#endif

Release/include/pplx/pplxtasks.h

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1997,9 +1997,16 @@ namespace details
19971997
}
19981998
catch(...)
19991999
{
2000-
// This exception could only have come from within the chore body. It should've been caught
2001-
// and the task should be canceled with exception. Swallow the exception here.
2002-
_ASSERTE(_HasUserException());
2000+
// The exception could have come from two places:
2001+
// 1. From the chore body, so it already should have been caught and canceled.
2002+
// In this case swallow the exception.
2003+
// 2. From trying to actually schedule the task on the scheduler.
2004+
// In this case cancel the task with the current exception, otherwise the
2005+
// task will never be signaled leading to deadlock when waiting on the task.
2006+
if (!_HasUserException())
2007+
{
2008+
_CancelWithException(std::current_exception());
2009+
}
20032010
}
20042011
}
20052012

Release/samples/BingRequest/BingRequest110.xp/BingRequest110.xp.vcxproj

Lines changed: 0 additions & 133 deletions
This file was deleted.

Release/samples/BingRequest/BingRequest110.xp/BingRequest110.xp.vcxproj.filters

Lines changed: 0 additions & 13 deletions
This file was deleted.

Release/samples/BingRequest/BingRequest110/BingRequest110.vcxproj

Lines changed: 0 additions & 143 deletions
This file was deleted.

Release/samples/BingRequest/BingRequest110/BingRequest110.vcxproj.filters

Lines changed: 0 additions & 13 deletions
This file was deleted.

Release/samples/BingRequest/dirs.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), build.root))\Build\Common.Build.settings" />
44

5-
<ItemGroup Condition="'$(Platform)' != 'ARM' and ('$(DevToolsVersion)'=='110' or '$(DevToolsVersion)'=='120' or '$(DevToolsVersion)'=='140')">
5+
<ItemGroup Condition="'$(Platform)' != 'ARM' and ('$(DevToolsVersion)'=='120' or '$(DevToolsVersion)'=='140')">
66
<ProjectFile Include="BingRequest$(DevToolsVersion)\BingRequest$(DevToolsVersion).vcxproj"/>
77
</ItemGroup>
88

9-
<ItemGroup Condition="'$(DevToolsVersion)'=='110' or '$(DevToolsVersion)'=='120'">
9+
<ItemGroup Condition="'$(DevToolsVersion)'=='120'">
1010
<ProjectFile Include="BingRequest$(DevToolsVersion).xp\BingRequest$(DevToolsVersion).xp.vcxproj" Condition="'$(Platform)' != 'ARM' and '$(RunCodeAnalysis)'!='true'" />
1111
</ItemGroup>
1212

0 commit comments

Comments
 (0)