-
Notifications
You must be signed in to change notification settings - Fork 10
pacx plugin install
github-actions[bot] edited this page Jul 22, 2025
·
4 revisions
Installs or updates a PACX plugin.
pacx plugin add
pacx plugin getYou can install a plugin from NuGet, or from a local .nupkg file.
To install a plugin from NuGet, use the following command:
pacx plugin install -n MyPlugin
pacx plugin install -n MyPlugin -v 1.0.0To install a plugin from a local file, use the following command:
pacx plugin install -f "C:\path\MyPlugin.1.0.0.nupkg"!!! WARNING!!!
Plugin content can be harmful. Be sure to download and install only plugins whose source/author is trusted. PACX creators deny any liability that my be associated with an improper use of PACX plugins.
| Long Name | Short Name | Required? | Description | Default value | Valid values |
|---|---|---|---|---|---|
name |
n |
N | To install from NuGet. The unique name of the NuGet package containing the plugin to install. | - | String |
version |
v |
N | To install from NuGet. Allows to explicit select the version of the plugin to install. | - | String |
source |
s |
N | To install from other NuGet feed. Allows to explicit select the version of the plugin to install. | - | String |
personalaccesstoken |
pat |
N | Personal Access Token to authenticate to private NuGet feeds. | - | String |
file |
f |
N | To install from a local file. The full path + file name of the nuget package containing the plugin to install. | - | String |