Difference between revisions of "HOWTO:Install Plugins"
From WireCAD Online Help
Wirecadadmin (Talk | contribs) |
Wirecadadmin (Talk | contribs) |
||
Line 12: | Line 12: | ||
WireCAD plugins extend the capabilities of WireCAD. <br> | WireCAD plugins extend the capabilities of WireCAD. <br> | ||
They come in two flavors: | They come in two flavors: | ||
− | # Auto-Discovering; typically used to create GUI elements. For example the Favorites tool panel is an Auto-Discovered plugin. These are distinguished by naming convention. The file name must end with *.plugin.dll. These files MUST reside in the c:\program files\WireCAD[6][7]\bin folder. | + | # Auto-Discovering (AD); typically used to create GUI elements. For example the Favorites tool panel is an Auto-Discovered plugin. These are distinguished by naming convention. The file name must end with *.plugin.dll. These files MUST reside in the c:\program files\WireCAD[6][7]\bin folder. |
− | # | + | # Manifested. These plugins require two files: |
+ | ## The plugin assembly file. The assembly file is typically a dll; however, in some circumstances may be an exe. | ||
+ | ## The plugin manifest file which has a .wpi extension. The manifest describes the plugin, where to find it, the name of the file, and how to call it from the WireCAD command line. In addition, the manifest MAY specify a menu item(button). | ||
+ | |||
+ | == Typical Installation for Plugins with Manifests == | ||
+ | Assumptions: | ||
+ | # You received a zip folder with a dll file enclosed. | ||
+ | |||
+ | Steps: | ||
+ | # Unzip the file to gain access to the *.Plugin.dll file | ||
+ | # Move the *.Plugin.dll file to the c:\program files\WireCAD[6][7]\bin | ||
+ | # Relaunch WireCAD[6][7] | ||
+ | |||
+ | |||
+ | |||
+ | == Typical Installation for Auto-Discovering(AD) Plugins == | ||
+ | Assumptions: | ||
+ | # You received a zip folder with a dll file enclosed. | ||
+ | |||
+ | Steps: | ||
+ | # Unzip the file to gain access to the *.Plugin.dll file | ||
+ | # Move the *.Plugin.dll file to the c:\program files\WireCAD[6][7]\bin | ||
+ | # Relaunch WireCAD[6][7] |
Revision as of 13:33, 19 February 2013
Command Line Shortcut: ' User Permissions Level: All |
Contents
Before You Start
WireCAD plugins extend the capabilities of WireCAD.
They come in two flavors:
- Auto-Discovering (AD); typically used to create GUI elements. For example the Favorites tool panel is an Auto-Discovered plugin. These are distinguished by naming convention. The file name must end with *.plugin.dll. These files MUST reside in the c:\program files\WireCAD[6][7]\bin folder.
- Manifested. These plugins require two files:
- The plugin assembly file. The assembly file is typically a dll; however, in some circumstances may be an exe.
- The plugin manifest file which has a .wpi extension. The manifest describes the plugin, where to find it, the name of the file, and how to call it from the WireCAD command line. In addition, the manifest MAY specify a menu item(button).
Typical Installation for Plugins with Manifests
Assumptions:
- You received a zip folder with a dll file enclosed.
Steps:
- Unzip the file to gain access to the *.Plugin.dll file
- Move the *.Plugin.dll file to the c:\program files\WireCAD[6][7]\bin
- Relaunch WireCAD[6][7]
Typical Installation for Auto-Discovering(AD) Plugins
Assumptions:
- You received a zip folder with a dll file enclosed.
Steps:
- Unzip the file to gain access to the *.Plugin.dll file
- Move the *.Plugin.dll file to the c:\program files\WireCAD[6][7]\bin
- Relaunch WireCAD[6][7]