Looks like it is well supported as of .NET Core 2.0 and PowerShell 6 Beta 3 (although it was supported in Beta 1 and 2 also but not as easily), here is a link to the Host PowerShell documentation in the GitHub repo
And they give a good sample application showing it running with .NET Core 2.0 and PowerShell Core v6.0.0-beta.3 and Later:
https://github.com/PowerShell/PowerShell/tree/master/docs/host-powershell
In order to get the correct packages into my NuGet package list I did need to add powershell-core as a new NuGet repository location which was:
https://powershell.myget.org/F/powershell-core/api/v3/index.json
I could then install the NuGet packages:
install-package microsoft.powershell.sdk -version 6.0.0-rc
install-package microsoft.powershell.commands.diagnostics -version 6.0.0-rc
install-package microsoft.wsman.management -version 6.0.0-rc
All three of these dependencies were required and then I could execute the following simple PowerShell command in my asp.net core MVC Web Application:
public class PowerShellHelper
{
public void Execute(string command)
{
using (var ps = PowerShell.Create())
{
var results = ps.AddScript(command).Invoke();
foreach (var result in results)
{
Debug.Write(result.ToString());
}
}
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…