You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per dotnet/runtime#53091, building the dotnet/runtime repo can eventually fail with:
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\tagoo\.nuget\packages\microsoft.dotnet.hotreload.utils.generator.buildtool\1.0.1-alpha.0.21267.1\build\Microsoft.DotNet.HotReload.Utils.Generator.BuildTool.targets(56,5): error MSB3073: The command "C:\Program Files\dotnet\dotnet.exe C:\Users\tagoo\.nuget\packages\microsoft.dotnet.hotreload.utils.generator.buildtool\1.0.1-alpha.0.21267.1\build\\..\tools\net6.0\Microsoft.DotNet.HotReload.Utils.Generator.BuildTool.dll -msbuild:C:\Users\tagoo\Source\repos\runtime\src\libraries\System.Runtime.Loader\tests\ApplyUpdate\System.Reflection.Metadata.ApplyUpdate.Test.MethodBody1\System.Reflection.Metadata.ApplyUpdate.Test.MethodBody1.csproj -script:C:\Users\tagoo\Source\repos\runtime\src\libraries\System.Runtime.Loader\tests\ApplyUpdate\System.Reflection.Metadata.ApplyUpdate.Test.MethodBody1\deltascript.json -p:Configuration=Release" exited with code 9009. [C:\Users\tagoo\Source\repos\runtime\src\libraries\System.Runtime.Loader\tests\ApplyUpdate\System.Reflection.Metadata.ApplyUpdate.Test.MethodBody1\System.Reflection.Metadata.ApplyUpdate.Test.MethodBody1.csproj]
This looks to be failing because the targets file runs <Exec Command="$(_HotReloadDeltaGeneratorCommand) $(_HotReloadDeltaGeneratorArgs)" />, where <_HotReloadDeltaGeneratorCommand>$(DotNetTool) $(_HotReloadDeltaGeneratorPath)</_HotReloadDeltaGeneratorCommand>.
I'd expect that DotNetTool should be properly quoted for this to work.
The text was updated successfully, but these errors were encountered:
As per dotnet/runtime#53091, building the dotnet/runtime repo can eventually fail with:
This looks to be failing because the targets file runs
<Exec Command="$(_HotReloadDeltaGeneratorCommand) $(_HotReloadDeltaGeneratorArgs)" />
, where<_HotReloadDeltaGeneratorCommand>$(DotNetTool) $(_HotReloadDeltaGeneratorPath)</_HotReloadDeltaGeneratorCommand>
.I'd expect that
DotNetTool
should be properly quoted for this to work.The text was updated successfully, but these errors were encountered: