dotnet msbuild --getProperty:OutputPath
sometimes hangs with no explanation
#1349
Labels
🧑💻 DX
Developer experience problem
This may only be happening to me, but it's still a problem I want to track down.
On my Linux computer, I sometimes find that
dotnet msbuild --getProperty:OutputPath
hangs with no explanation. It seems to happen most often after a reboot. This results intask up
not working because thebackend/Testing/Taskfile.yml
uses that command to set itsOUTPUT_PATH
environment variable, the root Taskfile includesbackend/Testing/Taskfile.yml
, andtask
tries to set all environment variables at startup time before running any tasks. So even thoughtask up
in the root directory is never going to use the output ofdotnet msbuild --getProperty:OutputPath
, it gets run anyway, and when it hangs it preventstask up
from completing.I haven't managed to track down exactly what is making
dotnet msbuild --getProperty:OutputPath
hang, or what conditions make it stop hanging. And I suspect that this problem is happening only on Linux, otherwise someone else would have mentioned and/or fixed the issue by now. Once I track it down, I'll update this issue and/or create a PR with a fix.The text was updated successfully, but these errors were encountered: