Creating plugin project

  1. Create project which will generate .NET assembly without startup code. That is, DLL with managed code.
  2. Add reference to JetBrains.ReSharper.Shell.dll from ReSharper installation folder, usually "C:\Program Files\JetBrains\ReSharper\VS2005\bin\"
  3. Open properties for the added reference and set "Copy Local" to "False"
  4. Open AssemblyInfo.cs and append the following attributes to the file:
    [assembly: PluginTitle("")]
    [assembly: PluginDescription("")]
    [assembly: PluginVendor("")]
  5. Fill in title, description and vendor name attributes with the appropriate values

See also

Building, running and debugging plugin
Deploying plugin

Labels

 
(None)