Powershell editor with intellisense, which can I embed in my program?

I have a C # application and you want people to be able to write powershell code in my application.

Does anyone know of a powershell editor with intellisense that matches the score?

+4
source share
2 answers

PowerGUI is the choice here. Check out http://powerguivsx.codeplex.com/ and see how PowerGUI is used in Visual Studio.

+6
source

You might want to check out PowerSE (http://www.powerse.com), for free. But there is also an OEM version that allows you to connect to the editor to edit / debug PowerShell commands. then return the command text for storage and execution in the context of your application.

+2
source

Source: https://habr.com/ru/post/1340973/


All Articles