summaryrefslogtreecommitdiff
path: root/tests/build.proj
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-08-31 16:51:58 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-08-31 16:51:58 -0700
commitc810a1111db04086e31d981090b8ba647375bf77 (patch)
tree1b7b44e2780ff5377b5da401ef726ac89e6129b0 /tests/build.proj
parent8f441624783d5a2a6c17364c633c21f2eac65215 (diff)
downloadcoreclr-c810a1111db04086e31d981090b8ba647375bf77.tar.gz
coreclr-c810a1111db04086e31d981090b8ba647375bf77.tar.bz2
coreclr-c810a1111db04086e31d981090b8ba647375bf77.zip
Stop groveling for project.json files when building every test.
This information is only needed by build.proj. Do not compute it in dir.props, which is included by every test project.
Diffstat (limited to 'tests/build.proj')
-rw-r--r--tests/build.proj5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/build.proj b/tests/build.proj
index 6d5e456dbb..0dfd84d47b 100644
--- a/tests/build.proj
+++ b/tests/build.proj
@@ -35,6 +35,11 @@
<!-- Tasks from buildtools for easy project.json dependency updates -->
<UsingTask TaskName="UpdatePackageDependencyVersion" AssemblyFile="$(BuildToolsTaskDir)Microsoft.DotNet.Build.Tasks.dll" />
+ <!-- Create a collection of all project.json files for dependency updates. -->
+ <ItemGroup>
+ <ProjectJsonFiles Include="$(SourceDir)**\project.json" />
+ </ItemGroup>
+
<Target Name="UpdatePackageDependencyVersion">
<UpdatePackageDependencyVersion ProjectJsons="@(ProjectJsonFiles)"
PackageId="$(PackageId)"