I'm playing with SpecFlow, and ReSharper thinks that my step definitions are unused (I guess because they're used via reflection):

[Binding]
public class StepDefinitions
{
    // ...

    [When(@"I press add")]
    public void WhenIPressAdd()   // R# thinks this is unused
    {
        _calculator.PressAdd();
    }

    // ...
}

How can I tell ReSharper that methods with [Given], [When], [Then] attributes (etc.) are actually used? I don't want to use // ReSharper disable UnusedMember.Global comments.

I could also mark each method (or the whole class) with [JetBrains.Annotations.UsedImplicitly]. I don't particularly want to do that either.

link|improve this question

73% accept rate
Is your class internal? Because I don't think it usually complains on public methods on public classes. – Klaus Byskov Hoffmann May 20 '10 at 16:39
No, it's not. Updated example. – Roger Lipscombe May 21 '10 at 7:48
Oddly, on another computer, R# doesn't warn about the 'unused' methods. Is there a configuration setting I could have changed? – Roger Lipscombe May 24 '10 at 8:24
feedback

1 Answer

up vote 7 down vote accepted

You need to use JetBrains Annotations, and mark attribute with an MeansImplicitUseAttribute. You can either reference JetBrains.Annotations.dll or copy annotations source code from Options / Code Inspection / Code Annotations, and put them into your solution.

If you need to annotate some external assembly you don't own, you need to create an External Annotation file (xml) in the following folder: %ReSharperInstallDir%\Bin\ExternalAnnotations. There are plenty of examples, you can just copy some.

link|improve this answer
Cool. Is there a way to mark an attribute that I don't own? – Roger Lipscombe May 21 '10 at 7:47
2  
Yes, you can. You need to create an External Annotation file (xml) in the following folder: %ReSharperInstallDir%\Bin\ExternalAnnotations. There are plenty of examples, you can just copy some. – Ilya Ryzhenkov Jun 16 '10 at 10:01
@IlyaRyzhenkov is there any way to deploy external annotations with the library (I do not want to inline or reference the JetBrains.Annotations.dll assembly) with no forcing user to place these annotations into %ReSharperInstallDir%\Bin\ExternalAnnotations folder? – hazzik Mar 30 at 20:07
The external annotations file can also be in the same path as the DLL if you name it DllNameWithoutExtension.ExternalAnnotations.xml - works perfectly for my library. I have this file as part of my C# project and set it to be copied to the output directory on build. – Lucero May 16 at 16:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.