ReSharper is a refactoring and productivity extension by JetBrains that extends native functionality of Microsoft Visual Studio 2005, 2008, 2010, and 2012. 7.0 includes additional improvements over 6.1 and brings support to Visual Studio 2012.

learn more… | top users | synonyms

2
votes
1answer
30 views

How can I disable the Qualifier 'this.' is redundant rule in TeamCity Code Inspections?

I use Resharper's StyleCop integration when I am writing code to give me consistently styled code. I am using the full standard rule set. This leads to Resharper regularly reminding me about ...
0
votes
1answer
75 views

Resharper suggest void method to public, internal or protected - how to always have demand access modifier

In my solution, I have a method setup like this void OnFooLoaded(param bar) { // method body } Using ReSharper 7, it suggests that I can make the method either public, internal or protected. I ...
0
votes
0answers
20 views

Exclude items from being searched

I use TypeScript and LessCSS files in solution with WebEssentials. So the .ts and .less files are compiled on save into .js and .css. The problem is these compiled .js and .css files are being ...
-1
votes
2answers
195 views

ReSharper Autocomplete Has Stopped Working [closed]

After using ReSharper 7 for some months now, it has suddenly stopped working on me today while editing a C# class. As far as I can see, all of the necessary options are enabled and everything should ...
0
votes
1answer
50 views

How can I change the style of warning on reshaper? (want to get rid of curly underline)

Whenever I open legacy or third party code that does not comply with my stylecop settings I get loads of blue underlines (warnings). This makes it quite hard to read the code as it adds a loads of ...
0
votes
1answer
39 views

Spaces around multiplication and division operators are deleted by IDE, how to keep them?

I'm using Visual Studio with ReSharper, and whenever I write something like a * b it gets changed to a*b Is it a Visual Studio setting or a ReSharper setting? What exactly should I change?
3
votes
0answers
114 views

ReSharper Search and Replace with Pattern

I would like to re-factor various blocks of code throughout a project using ReSharper 7.1 Search / Replace with pattern. The code blocks are similar to the following simplified example: ...
1
vote
1answer
117 views

import settings to resharper 7 from 6.3

I have been a resharper user for a number of years and a member of team that use the product. As a team we have created a common resharper xml settings file that we import in to resharper so that we ...
1
vote
2answers
737 views

ReSharper wont function properly in Visual Studio 2012 running on Windows 8

I installed Visual Studio 8 on Windows 8 with Resharper 7.0.1, and I have some problems getting Resharper to function properly. It seems most of ReSharper does not work, but here is some of the ...
5
votes
2answers
728 views

How to support MBUnit tests in Resharper 7

Since I upgraded to VS2012, my R#5 license was not useful anymore. After downloading the R#7.0.1 and installing I realized that MbUnit no longer had builtin support for R#7. Since I spent some time ...
4
votes
1answer
193 views

How to disable /* autocomplete in Visual Studio 2012 (or Resharper)

I have Visual Studio 2012 with Resharper installed. When editing css files, when I type /*, I get autocompletion like so: /**/ I would like to disable that, but I cannot find it in the options menu. ...
2
votes
1answer
102 views

Resharper quick-fix puts this qualifier in front of properties and not just private fields

I am using VS 2012 and Resharper 7. In my project the convention to access private fields is always with "this" qualifier, just to make it clear it's private (e.g. this.myPrivateField). Properties ...
4
votes
1answer
246 views

ReSharper 7 autocomplete incorrectly displays “No suggestions” after typing “this.”

I'm using Visual Studio 2010 SP 1 w/ .NET 4.0 and I just upgraded to ReSharper 7. Since upgrading, when I type "this.", Resharper autocomplete always displays "No suggestions" as shown in this ...
2
votes
2answers
112 views

How do I make Resharper stop flagging my test function as not used?

I'm using xUnit for unit testing and in one of my test classes I have 65 tests. Resharper is flagging one of them as not used and is keeping the file flagged yellow/orange until I delete it. I don't ...
0
votes
1answer
200 views

ReSharper does not recognize custom qunit tests

I want to use ReSharper to run my javascript unit tests. But I don't get ReSharper to detect my custom test functions. customTest("my test", function() { // do some stuff to test my code ok("The ...
1
vote
1answer
113 views

How do I stop ReSharper from placing “x => new” on a new line?

I know this is a fairly small detail, but for some reason it's incredibly annoying to me and I cannot figure out how to correct it (I've looked at the "Line Breaks and Wrapping" options). Here's how ...
1
vote
2answers
183 views

Resharper 7 - Cannot create custom pattern

When I try to create a new "highlighting pattern" in Resharper, the typing inside the main textbox simply doesn't work. So I'm stuck with the default input (="3") and can't change it at all. Am I ...
7
votes
2answers
1k views

Resharper 7: MSTest not working - “Test wasn't run”

Since I upgraded to VS2012 and Resharper 7, my previously working MS Tests are not running anymore. The tests are run in an ASP.NET environment. I use the following Attributes: [TestMethod] ...
0
votes
0answers
140 views

Using NUnit EventListeners Addin with ReSharper 7

I've difined an Addin for NUnit (2.6.0) like so namespace company.Testing.Attributes { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)] public class ...
3
votes
1answer
98 views

How can I remove a user category from a template?

How can I remove a user category from a Resharper Live Template? When only a category is selected (and not a template itself) the delete button is disabled: None of the items provide context menus, ...