summaryrefslogtreecommitdiff
path: root/tests/build.proj
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-05-18 11:22:42 -0700
committerwtgodbe <wigodbe@microsoft.com>2017-05-19 10:55:07 -0700
commit40151f7f049643d8945a1bb712701b7ce80f5384 (patch)
tree7f2010d754e09c54340eb0330b7d3ce347cf4734 /tests/build.proj
parent7a755987c3ceee405a1457df4bff9ac6f4218eda (diff)
downloadcoreclr-40151f7f049643d8945a1bb712701b7ce80f5384.tar.gz
coreclr-40151f7f049643d8945a1bb712701b7ce80f5384.tar.bz2
coreclr-40151f7f049643d8945a1bb712701b7ce80f5384.zip
Clean up 2.0.0 BuildTools PR
Diffstat (limited to 'tests/build.proj')
-rw-r--r--tests/build.proj26
1 files changed, 11 insertions, 15 deletions
diff --git a/tests/build.proj b/tests/build.proj
index 260afb275a..066f2a2370 100644
--- a/tests/build.proj
+++ b/tests/build.proj
@@ -21,22 +21,18 @@
</PropertyGroup>
<ItemGroup>
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\scripts\scripts.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\Common\build_against_pkg_dependencies\build_against_pkg_dependencies.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\Common\targeting_pack_ref\targeting_pack_ref.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\Common\test_dependencies\test_dependencies.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\Common\test_runtime\test_runtime.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\JIT\config\benchmark+roslyn\benchmark+roslyn.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\JIT\config\benchmark+serialize\benchmark+serialize.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\JIT\config\benchmark\benchmark.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\performance\performance.csproj" />
- <RestoreProjects Include="$(MSBuildThisFileDirectory)\src\TestWrappersConfig\TestWrappersConfig.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)scripts\scripts.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\build_against_pkg_dependencies\build_against_pkg_dependencies.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\targeting_pack_ref\targeting_pack_ref.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\test_dependencies\test_dependencies.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\test_runtime\test_runtime.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\JIT\config\benchmark+roslyn\benchmark+roslyn.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\JIT\config\benchmark+serialize\benchmark+serialize.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\JIT\config\benchmark\benchmark.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\performance\performance.csproj" />
+ <RestoreProjects Include="$(MSBuildThisFileDirectory)src\TestWrappersConfig\TestWrappersConfig.csproj" />
</ItemGroup>
- <PropertyGroup>
- <DnuRestoreDirs>@(RestoreProjects -> '%(Identity)', ' ')</DnuRestoreDirs>
- </PropertyGroup>
-
<Target Name="BuildTargetingPack" AfterTargets="BatchRestorePackages">
<Message Text="Building Targeting Pack" Importance="High" />
<MSBuild Projects="$(MSBuildThisFileDirectory)\src\Common\external\external.depproj" />
@@ -54,7 +50,7 @@
</Target>
<Target Name="RestorePackage">
- <Exec Command="$(DnuRestoreCommand) $(RestoreProj)"
+ <Exec Command="$(DotnetRestoreCommand) $(RestoreProj)"
StandardOutputImportance="Low" />
</Target>