According to Microsoft Docs Package Manager Console helps with package management. It also allows issuing migration related commands (e.g. Add-Migration
).
I was fooling around by trying its limits and have noticed that some Powershell commands simply do not work (indefinite wait). Example (trying to open a shell within a container):
docker exec -it catalogdb /opt/mssql-tools/bin/sqlcmd -S localhost -U sa
I pretty sure I have encountered other limitations in the past.
I tried finding out what are the known limitations of this console, since in many cases it is more convenient to run Powershell commands from Visual Studio, but could not find any relevant documentation.
Question: What are the Visual Studio's Package Manager Console (Powershell) limitations? (as opposed to Windows Powershell console)