From 3783d7e53f1e7382a0d5d33f739ca687f9136196 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Tue, 30 Jun 2015 14:11:27 -0700 Subject: Speed up package resotre of JIT Test build We spend a fair amount of time (six wall clock minutes on my machine) doing package restore for the JIT tests. This is because each project has its own packages.config file, so during the build we call nuget restore for each project. There are only four unique packages.config files for all these tests, so this change moves them to tests/src/JIT/config and updates the project files to consume them from there. This means during the build the `EnsureDependencies` target does not need to invoke nuget restore as often and the build is much faster as a result. --- tests/src/JIT/Directed/coverage/oldtests/cse1_cs_do.csproj | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tests/src/JIT/Directed/coverage/oldtests/cse1_cs_do.csproj') diff --git a/tests/src/JIT/Directed/coverage/oldtests/cse1_cs_do.csproj b/tests/src/JIT/Directed/coverage/oldtests/cse1_cs_do.csproj index ffb994dee9..2a8776bdf3 100644 --- a/tests/src/JIT/Directed/coverage/oldtests/cse1_cs_do.csproj +++ b/tests/src/JIT/Directed/coverage/oldtests/cse1_cs_do.csproj @@ -34,13 +34,16 @@ - + + + $(JitPackagesConfigFileDirectory)minimal.packages.config + - \ No newline at end of file + -- cgit v1.2.3