Show Navigation
Conversation
Notices
-
Having more experience with Powershell I have to say it's quite a pleasant experience as long as you stay in Powershell World where things are done the Powershell Way. But as soon as you need to interact with utilities not written for Powershell, like the .NET Core CLI things become more difficult. For example `export ASPNETCORE_ENVIRONMENT=Development` in bash is written `[Environment]::SetEnvironmentVariable("ASPNETCORE_ENVIRONMENT", "Development")`. That's right, you cannot set an environment variable for child processes without calling into the .NET stdlib.