All Questions
Tagged with resharper-9.0 resharper-sdk
3 questions
2
votes
1
answer
96
views
ReSharper SDK test for Context Action doesn't work
I try to test my custom ReSharper Context Action using ReSharper SDK built-in test infrastucture. I've created an input file, an output file (.gold) and run the test. Two problems occur:
Test is ...
0
votes
2
answers
128
views
Deploy Resharper 9.2 Plugin as a dll
For Resharper 7.1 we had written a Resharper Plugin - which was placed in the C:\Users\<UserName>\AppData\Roaming\JetBrains\ReSharper\vAny\Plugins
folder. In VS 2012 the plugin worked without ...
1
vote
1
answer
68
views
How do I prevent ReSharper from prefixing built in types with an '@' symbol when generating code?
I am writing a ReSharper plugin and I want to do this:
CSharpElementFactory factory = CSharpElementFactory.GetInstance(treeNode.GetPsiModule());
factory.CreateTypeMemberDeclaration(
"public ...