Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Unknown macro: {list-of-resources2}

Writing Plugins

 Click here to expand...

Registering Plugins

Undocumented

To register a plugin (say plugin.dll) on your system, run the following command on the [command prompt]:

c:\windows\Microsoft.NET\Framework\v2.0.50727\regasm /codebase /tlb /verbose  plugin.dll

where

  • plugin.dll is the name of the plugin DLL file

Use the /codebase option if the Plug-In was created with a strong name (see CLR Inside Out: Using Strong Name Signatures for details), otherwise this option can be omitted. If the /codebase option is used for a Plug-In that does not have a strong name, a warning message is generated. This warning message can be ignored and the Plug-In will still work.

Plugins from 3rd parties

  • No labels