Method | Description | |
---|---|---|
AddCommand ( string category, string command, string shortName, string arguments, string description, string longDescription, SetupCommandHandler handler ) : void |
Adds a custom command to the add-in manager
|
|
PrintHelp ( ) : void |
Prints help about the add-in management tool, or about a specific command
|
|
Run ( string args ) : int |
Runs the command line tool.
|
|
Run ( string args, int firstArgumentIndex ) : int |
Runs the command line tool.
|
|
SetupTool ( |
Creates a new instance
|
Method | Description | |
---|---|---|
AddRepository ( string args ) : void | ||
BuildPackage ( string args ) : void | ||
BuildRepository ( string args ) : void | ||
CheckInstall ( string args ) : void | ||
CreateCommands ( ) : void | ||
DumpRegistryFile ( string args ) : void | ||
FindCommand ( string id ) : |
||
GetArguments ( ) : string[] | ||
GetFullId ( string id ) : string | ||
GetId ( AddinHeader ainfo ) : string | ||
GetNodes ( |
||
GetOption ( string key, string defValue ) : string | ||
HasOption ( string key ) : bool | ||
Install ( |
||
Install ( string args ) : void | ||
IsHidden ( |
||
IsHidden ( AddinHeader ainfo ) : bool | ||
ListAvailable ( string args ) : void | ||
ListInstalled ( string args ) : void | ||
ListRepositories ( string args ) : void | ||
ListUpdates ( string args ) : void | ||
PrintAddin ( |
||
PrintAddinInfo ( string args ) : void | ||
PrintAddinXml ( |
||
PrintApplications ( string args ) : void | ||
PrintExtensionNodeSetXml ( |
||
PrintExtensionPoint ( |
||
PrintLibraries ( string args ) : void | ||
ReadOptions ( string args ) : void | ||
RegisterNodeXml ( Mono.Addins.Description.ExtensionNodeType nt, |
||
RemoveRepository ( string args ) : void | ||
RepairRegistry ( string args ) : void | ||
RunCommand ( string cmd, string parms ) : int | ||
Uninstall ( string args ) : void | ||
Update ( string args ) : void | ||
UpdateAvailableAddins ( string args ) : void | ||
UpdateRegistry ( string args ) : void |
public AddCommand ( string category, string command, string shortName, string arguments, string description, string longDescription, SetupCommandHandler handler ) : void | ||
category | string | /// Category under which the command has to be shown in the help text /// |
command | string | /// Name of the command /// |
shortName | string | /// Short name of the command (it's an alias of the normal name) /// |
arguments | string |
/// Formal description of the arguments that the command accepts. For example: "[addin-id|addin-file] [--xml] [--all] [--full] [--namespace |
description | string | /// Short description of the command /// |
longDescription | string | /// Long description of the command /// |
handler | SetupCommandHandler | /// Delegate to be invoked to run the command /// |
return | void |
public Run ( string args ) : int | ||
args | string | /// Command line arguments /// |
return | int |
public Run ( string args, int firstArgumentIndex ) : int | ||
args | string | /// Array that contains the command line arguments /// |
firstArgumentIndex | int | /// Index of the arguments array that has the first argument for the management tool /// |
return | int |
public SetupTool ( |
||
registry | /// Add-in registry to manage. /// | |
return | System |