Open-PackagePage(Visual Studio 中的包管理器控制台)
已在 3.0 及以上版本中弃用;仅在适用于 Windows 的 Visual Studio 中的包管理器控制台内可用。
使用指定包的项目、许可证或报告滥用 URL 来启动默认浏览器。
语法
Open-PackagePage [-Id] <string> [-Version] [-Source] [-License] [-ReportAbuse]
[-PassThru] [<CommonParameters>]
参数设置
参数 | 说明 |
---|---|
Id | 所需包的包 ID。 -Id 开关自身为可选。 |
版本 | 包的版本,默认为最新版本。 |
Source | 包源,默认为在源下拉列表中选择的源。 |
许可证 | 打开浏览器并转到包的许可证 URL。 如果未指定 -License 和 -ReportAbuse,浏览器则会打开包的项目 URL。 |
ReportAbuse | 打开浏览器并转到包的报告滥用 URL。 如果未指定 -License 和 -ReportAbuse,浏览器则会打开包的项目 URL。 |
PassThru | 显示 URL;与 -WhatIf 一起使用可禁止打开浏览器。 |
这些参数均不接受管道输入或通配符字符。
通用参数
Open-PackagePage
支持以下常见 PowerShell 参数:Debug、Error Action、ErrorVariable、OutBuffer、OutVariable、PipelineVariable、Verbose、WarningAction 和 WarningVariable。
示例
# Opens a browser with the Ninject package's project page
Open-PackagePage Ninject
# Opens a browser with the Ninject package's license page
Open-PackagePage Ninject -License
# Opens a browser with the Ninject package's report abuse page
Open-PackagePage Ninject -ReportAbuse
# Assigns the license URL to the variable, $url, without launching the browser
$url = Open-PackagePage Ninject -License -PassThru -WhatIf