Questions tagged [resharper-8.0]

Use this tag for version specific questions about ReSharper 8.0 - the refactoring and productivity extension for Visual Studio by JetBrains. When using this tag also include the more generic [resharper] tag where possible.

ReSharper executes solution-wide static code analysis (error detection on-the-fly, without the need to compile), provides additional features for error correction, code completion, navigation, search, syntax highlighting, formatting, code generation and optimization, carries out 40 automated refactorings, and streamlines unit testing using NUnit and MSTest, among other features.

ReSharper 8 was released in july, 18th 2013 and add support for Visual Studio 2013 Preview while preserving compatibility with previous versions of the IDE, namely Visual Studio 2005, 2008, 2010 and 2012

105 questions
40
votes
5 answers

JetBrains Resharper 9 Ultimate Test Runner error: NUnit.Core.UnsupportedFrameworkException: Skipped loading assembly {MyAssembly}

This seems to be an error with the JetBrains Resharper 9.1 Ultimate Test Runner referencing an older version of NUnit. I am using NUnit 3.0 in my assembly. [Window Title] Unit Test Runner [Main Instruction] Unit Test Runner failed to run…
Pouya Barrach-Yousefi
  • 1,207
  • 1
  • 13
  • 27
37
votes
2 answers

ReSharper blocks keyboard input in VS2013

Recently my Visual Studio 2013 stopped responding to keyboard input. I couldn't type anything in any of the files. I suspended ReSharper and It worked again but I would really want to use ReSharper. I tried reinstalling ReSharper but without…
Nanou Ponette
  • 1,372
  • 4
  • 22
  • 46
32
votes
2 answers

How to stop Resharper from line breaking after return keyword for long lines?

When I auto format with Resharper CTRL + ALT + SHIFT + F for lines longer than max line length (in my case say it's 80 characters), I get the following: return View(new ViewModel { Identifier = identifier, …
Tod Thomson
  • 4,773
  • 2
  • 33
  • 33
23
votes
2 answers

How to fix ReSharper indentation on object & other initializers

I have found other duplicates of this question, but they are very old and the solutions are not applicable to R#8, because the settings have changed. When I do anonymous type or object initialization (any kind of curly brace indentation with…
danludwig
  • 46,965
  • 25
  • 159
  • 237
21
votes
5 answers

Change TODO item color in Visual Studio 2012 with Resharper 8

After installing Resharper 8 on Visual Studio 2012 my TODOs are now a retina-searing blue of which this screenshot does not do justice: I've found similar questions here and here they don't seem to apply to VS2012 and/or RS8, as there is no…
joelmdev
  • 11,083
  • 10
  • 65
  • 89
20
votes
1 answer

Resharper 8: Navigate To Decompiled Sources not working

In Visual Studio 2013, when i right click on a fx a method and choose "Navigate To -> Decompiled Sources", nothing happens. How do i enable this ?
Christian Bekker
  • 1,857
  • 4
  • 27
  • 43
19
votes
3 answers

Resharper 8 could not find implementations of interfaces

In some cases (Interface and implementation in different projects of the same solution) Ctrl + F12 (go to implementation) does not work. It says "Implementations of IYourService were not found". The same thing could happen when you want to implement…
Ievgen Martynov
  • 7,870
  • 8
  • 36
  • 52
17
votes
1 answer

Resharper custom patterns change method name

I want to change method signature from public static async Task Load() to public static async Task LoadAsync() How to define a custom patterns in ReSharper?
lone
  • 193
  • 5
17
votes
4 answers

Why does IntelliSense keep changing function to Function?

I am having a very strange IntelliSense issue, and I'm not sure if it's Visual Studio 2013 or ReSharper 8.1. When I'm working in views (cshtml) within script tags (javascript), something keeps changing "function" to "Function" with a capital "F." …
16
votes
3 answers

Resharper cannot resolve partial view inside master page

I've upgraded from ReSharper 7 on vs2012 pro to ReSharper 8.1 on vs2013 pro, and ReSharper is now warning me a lot of my partial views cannot be resolved. It seems to be only happening: In ASP master pages (i.e. not razor) When the .ascx partial is…
berkeleybross
  • 1,314
  • 2
  • 13
  • 27
11
votes
2 answers

How to Prevent ReSharper from Wrapping One-Line Statements?

What is the best way to prevent ReSharper from wrapping certain lines of code. For example, an if statement with one condition and a simple body should not be wrapped. ReSharper currently forces this line... if (item == null) { return null; …
Ryan D'Baisse
  • 837
  • 11
  • 29
10
votes
2 answers

"Auto-property accessor is never used" warning from ReSharper

Our Application is an MVC Application . I tried to run code analysis using ReSharper. I am getting "Auto-property accessor is never used" as warnings in many of my view model properties. For example, ReSharper shows the warning on this: public…
Sri vahgar
  • 109
  • 1
  • 8
10
votes
1 answer

Remove unused js and css files from existing visual studio project

For a new development project, I started with MVC4 template in VS2012. I also added few more Nuget packages, js and css. Admittedly made a mistake to considered the source as starting point for new project rather than starting with empty project. I…
SBirthare
  • 5,117
  • 4
  • 34
  • 59
10
votes
1 answer

ReSharper: any other way to suppress a warning other than with a comment?

I am getting ReSharper warning which I would like to suppress in this particular case (but not for the entire project). At the moment the only way to do it is to suppress it with a comment. However it looks ugly! // ReSharper disable…
niaher
  • 9,460
  • 7
  • 67
  • 86
9
votes
0 answers

How can I make Visual Studio show the entire documentation for exceptions?

I am using Visual Studio 2013 with ReSharper 8.2.3. In the code editor, VS will display some information about identifiers under the cursor in a popup box. This information is taken from the Xml API documentation included in the source assembly of…
O. R. Mapper
  • 20,083
  • 9
  • 69
  • 114
1
2 3 4 5 6 7