Is there a way to run PowerShell scripts from .net-core ?
I\'m trying to run a PowerShell script in a new .net core \'website\\api\'. From what I can tell in order
The official answer is that running PowerShell Core from your own application is currently not supported. Probably the biggest issue is that .Net Core is missing AppDomain.GetAssemblies(), which might be fixed in .Net Core 1.2.
AppDomain.GetAssemblies()