Working with Tortoise SVN plugins in C#
I am creating a new plugin in C# for TSVN. I downloaded the C# example from http://tortoisesvn.googlecode.com/svn/trunk/contrib/issue-tracker-plugins/ .
I run the example and follow the steps mentioned here http://tortoisesvn.googlecode.com/svn/trunk/contrib/issue-tracker-plugins/issue-tracker-plugins.txt
But, as soon as I set up my plugin in TSVN , TSVN throws the following error at me. "The Issue Tracker provider coul开发者_如何学Cd not be created. Please Check that it is installed correctly."
Somebody knows the reason why?
Any help would be highly appreciated.
I wouldn't follow the .txt file first. Instead:
- Open the C# solution http://tortoisesvn.googlecode.com/svn/trunk/contrib/issue-tracker-plugins/ExampleCsPlugin/ExampleCsPlugin.sln
- Rebuild it
- Edit the ExampleCsPlugin.reg file and change the file:// paths to point to where your .dll was built (should be ...\ExampleCsPlugin\bin\Debug in your working copy).
- Double click the .reg file from explorer (open it in regedit.exe)
You should be able to see the plugin in TortiseSVN's settings dialog when you click the "add..." button. Once you've gotten this far start modifying things and creating a new project as the .txt instructs.
精彩评论