Questions tagged [resharper-7.1]

ReSharper is a refactoring and productivity extension by JetBrains that extends native functionality of Microsoft Visual Studio 2003, 2005, 2008, 2010, 2012 and 2013. Use this tag for questions referring specifically to version 7.1 of ReShaper.

ReSharper 7.1 is a free upgrade for everyone who owns a ReSharper 7 license or a ReSharper 6 license purchased since June 1, 2012.

ReSharper 7 officially supports Visual Studio 2012, 2010, 2008 SP1, and 2005 SP1.

ReSharper is available for download as a single package that includes all three editions. Depending on the license key used, the Full, C# or VB.NET Edition will be activated automatically. During evaluation, Full Edition is activated by default but you can switch to another edition in the License Information dialog box (ReSharper | Help | License Information.)

Download page

75 questions
0
votes
1 answer

Add unit test to unit test session or to Nunit, by list of unit test case names

We are having almost 20000 unit test written for project and if I make any change which can fail existing unit test. Now there are almost 100 unit test are failing and I have list of unit test case failing. Question is there any way I can add all…
Tanaji Kamble
  • 353
  • 1
  • 3
  • 17
0
votes
2 answers

How can I install an older licensed version of R# over an expired Trial version?

I have a license for version 7.X of R#; I use it at home. At work I've been using the trial version of the latest iteration until it expires. After having it expire a couple of times, I decided to just use the older version for which I have a…
0
votes
1 answer

Automated check for nested statements in Visual Studio

As part of my apprenticement, I have to find a way to (automatically) search for statements nested more than 4 levels down. I use Visual Studio (2012) and C# programming language. An example of a (faulty) nested method. foreach (int i in items)…
Matthijs
  • 3,162
  • 4
  • 25
  • 46
0
votes
1 answer

Navigate between loosely related classes based on naming convention

In my current project we have many parts where we have something as follows: var request = new ThingRequest {someId = }; ThingResponse response = dispatcher.Get(request); Where dispatcher fetches a class with the name…
Boris Callens
  • 90,659
  • 85
  • 207
  • 305
0
votes
1 answer

How to uppercase entire variable in Resharper Template?

I have a situation where I want the variable to be capitalized for documentation eg (trivalized for example) ///AT+$COMMAND$ void At$COMMAND$() { } So I want the user of the template to type in something like "Blah" and that gets used in the…
Keith Nicholas
  • 43,549
  • 15
  • 93
  • 156
0
votes
2 answers

Resharper solution settings

I have Visual Studio with Resharper 7.1 configured in it. I opened a solution and added a word say QWERTY in the abbreviation list. I could find this entry in GlobalSettingsStorage.DotSettings file and everything is working as expected. Now I…
Sandy
  • 11,332
  • 27
  • 76
  • 122
0
votes
1 answer

resharper 7.1 autocompletion and erase everything on the right

Suppose I have this line: return _jsonParser.Parse(_fileReader.Read(fileLocation)) ; Then, I remove the "_jsonParser.Parse" part: return (_fileReader.Read(fileLocation)) ; Then I start writing return _csvP(_fileReader.Read(fileLocation)) ; Then I…
John
  • 4,351
  • 9
  • 41
  • 57
0
votes
1 answer

Is there any way to change R# font size?

is there any way to change the resharper dialogs font size. Supposedly it should be a way to do this on VS going to tools-> options-> environment -> fonts and colors -> resharper... But in my case there is no such option. Am I missing something…
Ale Miralles
  • 604
  • 8
  • 17
0
votes
1 answer

Type member layout customization

I'm trying to put all what belongs to my WPF Commands into one region with ReSharpers Code Cleanup. I've tried following XML inside my working pattern. But this isn't working. I guess the match isn't working. Also I would like to move methods with…
Lucas
  • 3,376
  • 6
  • 31
  • 46
0
votes
1 answer

Accessing IMethodDeclaration objects via ReSharper SDK

I have in hand an INamespaceBody, IClassDeclaration, and IMethod. I want to get the IMethodDeclaration corresponding to the IMethod and the IClassBody corresponding to the IClassDeclaration. But I am totally at a loss...how can I achieve this?
0
votes
1 answer

ReSharper changes intellisense behaviour when initilizing objects

Let's assume I have a class public class Dummy { public int DummyInt { get; set; } public string DummyString { get; set; } } and somewhere in the code I have: var dummy = new Dummy { In VS10, if I press now 'a' I will get a list of…
0
votes
1 answer

Resharper: Pull Members Up from base class?

Using Resharper 7.1, C# I have a class Apple that is based on Fruit public partial class Apple: Fruit, IEat Using the command Refactor/Pull Members Up, how do I add the Fruit.Eat() method to the Interface? The Resharper UI only lets me add Apple…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
1 answer

automatic sync of resharper 7 settings / live templates between several computers

Is it possible to automatically synchronise settings between computers, especially LiveTemplates? Basically, I would like that if I add a LiveTemplate on a computer, it would be automatically added to all the other development team machines. …
Karl Cassar
  • 6,043
  • 10
  • 47
  • 84
0
votes
1 answer

How can I change the style of warning on resharper? (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 line noise. Is there a way of changing this curly…
rui
  • 11,015
  • 7
  • 46
  • 64
-1
votes
1 answer

How do you determine the return type of a method using the ReSharper SDK?

I'm trying to write a simple ReSharper 7.1 plugin to change the return type of methods under certain circumstances. I've derived my class from ElementProblemAnalyzer and implemented the Run method as follows: protected…
Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
1 2 3 4
5