.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.

OptionDescription
NameName of the extension visible to the user.
CommentA longer description of the extension.
AssemblyAssembly Relative path to the assembly containing the extension.
ImplementationFully qualified class name of the class implementing the extension.
ArchitectureArchitecture [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.