I’m starting to write an add-in for Visual Studio 2005 that would integrate NUnit with the IDE. Any ideas on how and where I should start? I have a basic idea on how add-ins work.
I believe I would need to know the NUnit API for this type of integration. Where can I find enough resources to achieve this?
Some resources you might try:
Monodevelop has NUnit addin. You can read a lot about how to communicate with NUnit API by reading the source, especially if it is more for learning purposes.
The NUnit GUI is open source, so you can see how it interacts with the NUnit runner, etc. It’s just a wrapper, and should contain all the functionality you will need.
The guys at NUnit are very responsive, and if you subscribe to their mailing list they’ll help you a lot about finding the appropriate APIs.
There are a lot of articles about how to create addins for VS, here is one (you can find more with google).