Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2017-01-31 06:00:25 +0300
committerEric St. John <ericstj@microsoft.com>2017-01-31 17:27:49 +0300
commit17fdb439c50f4aa66a99f9b5549e9db923331e40 (patch)
tree26c58725684a43b1bba36a503d8e733810bf2915 /build.proj
parent86c3336728bd097afce12a5374e36c11ee857a18 (diff)
Fix configurations for UAP
These changes enable TargetGroup=UAP to build completely.
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.proj b/build.proj
index 25393e26b3..7b8684a855 100644
--- a/build.proj
+++ b/build.proj
@@ -62,7 +62,8 @@
<Target Name="UpdateVSConfigurations" DependsOnTargets="BuildCoreFxTools">
<Message Importance="High" Text="Updating configurations for projects ..." />
<ItemGroup>
- <_projectsToUpdate Include="$(MSBuildThisFileDirectory)src/**/*.*proj" Exclude="@(ProjectExclusions)" />
+ <_projectsToExcludeFromUpdate Include="$(MSBuildThisFileDirectory)src/**/*.vcxproj" />
+ <_projectsToUpdate Include="$(MSBuildThisFileDirectory)src/**/*.*proj" Exclude="@(ProjectExclusions);@(_projectsToExcludeFromUpdate)" />
</ItemGroup>
<UpdateVSConfigurations ProjectsToValidate="@(_projectsToUpdate)" />
<Message Importance="High" Text="Updating configurations for projects ... Done." />