.NET extension header file
.NET extensions use a slightly different header file “.netplugin”. As with Python header files, the path to the header file relative to the root directory is the unique ID of the extension.
Option | Description |
---|---|
Name | Name of the extension visible to the user. |
Comment | A longer description of the extension. |
Assembly | Assembly Relative path to the assembly containing the extension. |
Implementation | Fully qualified class name of the class implementing the extension. |
Architecture | Architecture [x86|x64] Determines what architecture the extension should run under. |
.NET extension header files describes a class in an assembly that implements the extension interface, as well as determine what platform the extension should run under.
Updated over 2 years ago