tags:

views:

67

answers:

2

Ok I must be having a blonde moment, but for the life of me I can't find where to download the resherper API, to use with the project I got from Here:

http://devlicio.us/blogs/hadi_hariri/archive/2010/01/12/writing-plug-ins-for-resharper-part-1-of-undefined.aspx

Any help or links would be greatly appreciated.

Cal-

+2  A: 

Api information:

http://www.jetbrains.com/resharper/features/open_api.html

You mostly need to reference various DLLs in the bin directory of the Resharper folder, then you can get started playing around.

If you don't have a license to the product, that would be an obvious prerequisite.

Edited to add: Here's some ancient documentation, which may get you somewhere: http://www.jetbrains.com/resharper/documentation/help20/Introduction/openapi.html

And the developer forums: http://devnet.jetbrains.net/community/resharper/resharper_eap

And occasional tutorials on their blog: http://blogs.jetbrains.com/dotnet/

It's not really great documentation, but you probably will have at least a little bit of help from Xml Doc comments.

JasonTrue
I don't see any API documentation there though - the best appears to be 'read the source to the powertools' for the 4.x link on their confluence. Or am I missing something?
Rup
That was the info I Needed, Thanks! E-
Eric Brown - Cal
A: 

You can look at sources of ReSharper PowerToys, open sourced examples of small features done with Open API.

derigel