summaryrefslogtreecommitdiff
path: root/src/build.proj
diff options
context:
space:
mode:
authorAmy Yu <amycmyu@gmail.com>2018-07-03 12:13:51 -0700
committerAmy Yu <amycmyu@gmail.com>2018-07-09 11:50:19 -0700
commita7358133ec2544de4c4ddce5a1f75a8f449cb2ef (patch)
tree7421dd1a827dc1b514cbe517a8f4eb0e00bd88f9 /src/build.proj
parenta5fbfa57fe7c9dc83d7f7bd4b464b97ffeed35d4 (diff)
downloadcoreclr-a7358133ec2544de4c4ddce5a1f75a8f449cb2ef.tar.gz
coreclr-a7358133ec2544de4c4ddce5a1f75a8f449cb2ef.tar.bz2
coreclr-a7358133ec2544de4c4ddce5a1f75a8f449cb2ef.zip
Use BuildManagedTools argument instead of environment variable, removed unneeded flags
Diffstat (limited to 'src/build.proj')
-rw-r--r--src/build.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build.proj b/src/build.proj
index a207114d0f..0f60058a92 100644
--- a/src/build.proj
+++ b/src/build.proj
@@ -5,7 +5,7 @@
<ItemGroup>
<Project Condition="$(SkipSOS) != 'true'" Include="ToolBox\SOS\NETCore\SOS.NETCore.csproj" />
<Project Include="System.Private.CoreLib\System.Private.CoreLib.csproj" />
- <Project Condition="'$(DotNetBuildFromSource)' != 'true' AND '$(__BuildManagedTools)' == '1'" Include="tools/r2rdump/R2RDump.csproj" />
+ <Project Condition="'$(DotNetBuildFromSource)' != 'true' AND '$(BuildManagedTools)' == 'true'" Include="tools/r2rdump/R2RDump.csproj" />
</ItemGroup>
<Import Project="..\dir.targets" />
@@ -27,7 +27,7 @@
<CoreLibPDBPath>$(BinDir)System.Private.CoreLib.pdb</CoreLibPDBPath>
</PropertyGroup>
- <Target Name="RestoreR2RDumpPackages" Condition="'$(DotNetBuildFromSource)' != 'true' AND '$(__BuildManagedTools)' == '1'" BeforeTargets="Build">
+ <Target Name="RestoreR2RDumpPackages" Condition="'$(DotNetBuildFromSource)' != 'true' AND '$(BuildManagedTools)' == 'true'" BeforeTargets="Build">
<Exec Command="$(DotnetRestoreCommand) tools/r2rdump/R2RDump.csproj"
StandardOutputImportance="Low" />
</Target>