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:
authorKarthik Rajasekaran <karajas@microsoft.com>2016-10-15 03:43:46 +0300
committerKarthik Rajasekaran <karajas@microsoft.com>2016-10-18 21:40:01 +0300
commit8ff8ae928d01b0f1e34d55c9867191c730db0102 (patch)
tree15ba38b0eb3b750b6f4a5b49e33eaac0885f03cf /build.proj
parent0f89ef76bf6982c886adf4d8d91a53e761506648 (diff)
Fix PackagesDrops
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.proj b/build.proj
index ad4de769c0..cb539527a5 100644
--- a/build.proj
+++ b/build.proj
@@ -126,12 +126,16 @@
<UsingTask TaskName="AddDependenciesToProjectJson" AssemblyFile="$(BuildToolsTaskDir)Microsoft.DotNet.Build.Tasks.dll"/>
<Target Name="UpdateVersionsOnTestProjectJson" >
+ <!-- Duplicate properties to be removed in future -->
<PropertyGroup>
<PackageNameRegex Condition="'$(PackageNameRegex)' == ''">(?%3Cname%3E.*)\.(?%3Cversion%3E\d+\.\d+\.\d+)(-(?%3Cprerelease%3E.*)?)?</PackageNameRegex>
</PropertyGroup>
+ <ItemGroup>
+ <_PackagesDropsForCommonProjectJson Include="$(PackagesDrops)" />
+ </ItemGroup>
<AddDependenciesToProjectJson AdditionalDependencies="@(ExternalDependencies)"
- PackagesDrops="@(_PackagesDrops)"
+ PackagesDrops="@(_PackagesDropsForCommonProjectJson)"
PackageNameRegex="$(PackageNameRegex)"
VersionsFiles="@(_VersionsFiles)"
ProjectJson="$(CommonTestProjectJson)"