Why does ReSharper ignore files included with NuGet packages
And, how can I get it to stop doing that?
I am currently commenting out the package within packages.config but I want to be able to tell ReSharper to include these filesin Code Analysis - how can I do this please?
Please sign in to leave a comment.
It ignores files within NuGet packages because these files could be updated anytime and therefore any changes made would be lost.
Get it to stop doing that by removing the NuGet package references from within the packages.config file (recommended JetBrains solution as per:
http://youtrack.jetbrains.com/issue/RSRP-392614
and
http://www.beabigrockstar.com/blog/cleanup-code-resharper-available
)
With thanks to Alexander Kurakin for his reply to this post and other JetBrains employees who helped me with this between me posting this a few days ago and it appearing.