System.Management.Automation asp.net 核心 1.1 的库
System.Management.Automation lib for asp.net core 1.1
我正在尝试在我的 ASP.NET 核心应用程序(.net 核心应用程序 1.1)中使用“System.Management.Automation”库。但我无法从 nuget 包管理器中添加它。任何人都可以建议 ASP.NET Core app 1.1.
的 lib 支持版本
谢谢,
official package on nuget仅适用于net4.0
有可用的 myget 包,但您需要先将存储库添加到 nuget.config:
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="powershell-core" value="https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
这应该有助于解决软件包问题。
我正在尝试在我的 ASP.NET 核心应用程序(.net 核心应用程序 1.1)中使用“System.Management.Automation”库。但我无法从 nuget 包管理器中添加它。任何人都可以建议 ASP.NET Core app 1.1.
的 lib 支持版本谢谢,
official package on nuget仅适用于net4.0
有可用的 myget 包,但您需要先将存储库添加到 nuget.config:
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="powershell-core" value="https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
这应该有助于解决软件包问题。