提交 8b09d6ad 编写于 作者: J jaredpar

Rename to BootstrapBuildPath

The previous name was easily confused with a boolean value.  Changed to
have the Path suffix to make the intent of the value clearer.
上级 59611a73
......@@ -60,22 +60,22 @@
</PropertyGroup>
<!-- Import the props files from the toolset NuGet packages if we're not in a bootstrap build -->
<ImportGroup Label="GlobalNuGets" Condition="'$(BootstrapBuild)' == ''">
<ImportGroup Label="GlobalNuGets" Condition="'$(BootstrapBuildPath)' == ''">
<Import Project="$(ToolsetCompilerPropsFilePath)"
Condition="Exists('$(ToolsetCompilerPropsFilePath)')" />
<Import Project="$(RoslynDiagnosticsPropsFilePath)"
Condition="Exists('$(RoslynDiagnosticsPropsFilePath)') And ('$(UseRoslynAnalyzers)' == 'true')" />
</ImportGroup>
<Target Name="EnsureGlobalNuGets" Condition="'$(BootstrapBuild)' == ''">
<Target Name="EnsureGlobalNuGets" Condition="'$(BootstrapBuildPath)' == ''">
<Error Condition="!$(CscToolPath.Contains('$(ToolsetCompilerPackageName)'))"
Text="This project requires the $(ToolsetCompilerPackageName) NuGet package to build. Use NuGet Package Restore to download the required files (&quot;powershell .nuget\NuGetRestore.ps1&quot;). The missing file is &quot;$(ToolsetCompilerPropsFilePath)&quot;." />
</Target>
<PropertyGroup Condition="'$(BootstrapBuild)' != ''">
<CscToolPath>$(BootstrapBuild)</CscToolPath>
<PropertyGroup Condition="'$(BootstrapBuildPath)' != ''">
<CscToolPath>$(BootstrapBuildPath)</CscToolPath>
<CscToolExe>csc.exe</CscToolExe>
<VbcToolPath>$(BootstrapBuild)</VbcToolPath>
<VbcToolPath>$(BootstrapBuildPath)</VbcToolPath>
<VbcToolExe>vbc.exe</VbcToolExe>
</PropertyGroup>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册