pacx tool install - neronotte/Greg.Xrm.Command GitHub Wiki
Installs or updates a PACX plugin.
Aliases
pacx tool add
pacx tool get
Usage
You 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.0
To 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.
Arguments
| 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 |