如何使用nuget.exe命令行

时间:2017-01-04 15:52:52

标签: visual-studio powershell nuget

我希望在运行nuget restore命令后获得Visual Studio解决方案的软件包列表。 如何从命令行或Powershell(oustide Visual Studio)进行操作?

1 个答案:

答案 0 :(得分:3)

您可以运行以下PowerShell脚本来列出解决方案中所有已安装的软件包。请修改$ SOLUTIONROOT作为您的解决方案路径。

#This will be the root folder of all your solutions - we will search all  children of this folder
$SOLUTIONROOT = "D:\Visual Studio 2015 Project\SO Case Sample\PackageSource"

Function ListAllPackages ($BaseDirectory)
{
    Write-Host "Starting Package List - This may take a few minutes ..."
    $PACKAGECONFIGS = Get-ChildItem -Recurse -Force $BaseDirectory -ErrorAction SilentlyContinue | 
        Where-Object { ($_.PSIsContainer -eq $false) -and  ( $_.Name -eq "packages.config")}
    ForEach($PACKAGECONFIG in $PACKAGECONFIGS)
        {
            $path = $PACKAGECONFIG.FullName
            $xml = [xml]$packages = Get-Content $path
                            foreach($package in $packages.packages.package)
                            {
                                 Write-Host $package.id
                             }

        }
}

ListAllPackages $SOLUTIONROOT
Write-Host "Press any key to continue ..."
$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")