简体   繁体   English

如何在PowerShell脚本中使用NuGet包?

[英]How to use a NuGet package within a PowerShell script?

I'm writing a PowerShell script that makes use of the Mono.Cecil library. 我正在编写一个使用Mono.Cecil库的PowerShell脚本。 How would I install the package so I can use it from within the script? 我如何安装软件包,以便在脚本中使用它? Thanks! 谢谢!

(For the record, I did try Googling before asking this, but all that came up was results about PMC and Visual Studio, which aren't relevant to this question.) (为了记录,我在询问之前尝试了谷歌搜索,但所有出现的结果都是关于PMC和Visual Studio的结果,这与这个问题无关。)

~5.x versions of PowerShell have a nuget package source included by default but it doesn't work: ~5.x版本的PowerShell默认包含nuget包源,但它不起作用:

PS > Get-PackageSource 
Name                             ProviderName     IsTrusted  Location
----                             ------------     ---------  --------
nuget.org                        NuGet            False      https://api.nuget.org/v3/index.json
PSGallery                        PowerShellGet    False      https://www.powershellgallery.com/api/v2/

If you Unregister-PackageSource -Source nuget.org and Register-PackageSource -Location https://www.nuget.org/api/v2 -name nuget.org -Trusted I have been able to install nuget papckages with just Install-Package from PowerShell, not within visual studio. 如果您Unregister-PackageSource -Source nuget.orgRegister-PackageSource -Location https://www.nuget.org/api/v2 -name nuget.org -Trusted我已经能够安装nuget papckages只需Install-Package来自PowerShell,不在visual studio中。 Got the idea from this SO answer . 这个SO答案中得到了想法。

I don't know what other possible negative impacts there are to removing the v3 version of the nuget.org source but I have been running this way for a while and things appear ok, your mileage may vary. 我不知道除了nuget.org源码的v3版本还有什么其他可能的负面影响,但是我已经运行了一段时间,看起来没事,你的里程可能会有所不同。

As an alternative here is an example that gets the job done by pulling down the nuget.exe even if it is a crummy way to have to do this: 作为替代方案,这里有一个例子,通过拉下nuget.exe来完成工作,即使它是一个非常糟糕的方式来执行此操作:

function Install-InvokeOracleSQL {
    $ModulePath = (Get-Module -ListAvailable InvokeSQL).ModuleBase
    Set-Location -Path $ModulePath

    if ($PSVersionTable.Platform -ne "Unix") {
        $SourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
        $TargetNugetExe = ".\nuget.exe"
        Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe
        .\nuget.exe install Oracle.ManagedDataAccess
        Remove-Item -Path $TargetNugetExe
    } elseif ($PSVersionTable.Platform -eq "Unix") {
        nuget install Oracle.ManagedDataAccess.Core -Version 2.12.0-beta2
    }
}

我通过指定源代码在PowerShell 6(Core)中安装了一个包:

PS > install-package gudusoft.gsqlparser -source https://www.nuget.org/api/v2

Unable to find a good solution, I ended up just downloading and unzipping the package manually via the NuGet API. 由于无法找到一个好的解决方案,我最终只是通过NuGet API手动下载和解压缩包。

For those who are interested/others who have this problem, here is the code I used. 对于那些有兴趣/有其他问题的人, 这里是我使用的代码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM