ReSharper is a renowned productivity tool that makes Microsoft Visual Studio a much better IDE. Thousands of .NET developers worldwide wonder how they’ve ever lived without ReSharper’s code inspections, automated code refactorings, blazing fast navigation, and coding assistance.
2
votes
1answer
32 views
Warning when method is too long?
I'm looking for a way to create a rule for StyleCop, Resharper, Visual Studio itself or at least a add in which show me a visual warning if a method is longer than X characters / longer than X lines.
...
0
votes
0answers
11 views
ReSharper 7: To property with backing field - how to specify where to declare the field?
How does one tell ReSharper not to declare backing field where first private field is, but just in place, where property is declared, just above the property declaration?
1
vote
0answers
33 views
Resharper 7.1, Mixed Versions of DevExpress in VS2012 Ultimate Crashes
After a recent purchase (Apr 2013) of Resharper 7.1, although the VS IDE did not crash, The Visual Studio IDE Editor demonstrated strange behavior when refactoring code. My first instinct was to ...
-3
votes
0answers
40 views
Is there any extension or plugin to autoformat code in visual studio 2012? [closed]
I have tried ReSharper, but couldn't get it to format the way I wanted it to (check previous question if curious).
I want the code to auto format as you code or maybe after you finish the the ...
0
votes
0answers
18 views
How to create a custom pattern in resharper that autoformats code?
I am trying to create a custom pattern in ReSharper to help format some code.
Originally the code looks like this:
public someType functionName(int variable1, string variable2, long variable3)
{
}
...
1
vote
0answers
20 views
how can I stop resharper from complaining about html5 boilerplate html tags?
standard html5 boilerplate layout
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 ...
1
vote
0answers
35 views
Overloaded methods give “Method with optional parameter is hidden by overload” warning in Resharper
I have a few C# apps that do logging, and the Output method has an overload to accept the message and a StreamWriter, and another overload with an additional parameter for a params array. An example ...
10
votes
1answer
131 views
Resharper indenting the XML documentation text on code cleanup?
I am using Resharper 7.1 with the StyleCop plugin.
I am not sure if this is a bug, but, I am confused because the code cleanup behaves differently when text is selected prior to the cleanup ...
1
vote
2answers
51 views
How to create a custom pattern to replace `as` cast with direct cast in Resharper?
I have a lot of code like this:
ml = this.CriteriaList.ItemByName(SC_STATIONS) as MultiList;
I'd like to replace it with
ml = (MultiList) this.CriteriaList.ItemByName(SC_STATIONS);
To that end, ...
2
votes
1answer
67 views
Restoring Resharper after trialing StyleCop - get/set line breaks
I'm having trouble getting Resharper's clenaup code to stop changing properties like:
public long Value
{
get { return _thingy; }
set { _thingy = value; }
}
to:
...
0
votes
0answers
21 views
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<IMethodDeclaration> and ...
1
vote
1answer
102 views
ReSharper generates this file: Annotations.cs. Why?
In a setup with Visual Studio 2012 Update 2 and ReSharper 7.1.1 this file Annotations.cs is generated when creating a new projects. I can not find any article describing why ReSharper does that and if ...
0
votes
2answers
84 views
ReSharper color identifiers screw up with Visual Studio 2012 dark theme
We're experiencing an annoying problem issues with ReSharper's color identifiers feature when Visual Studio 2012 is set to the built-in dark theme.
With ReSharper's color identifiers disabled, the ...
2
votes
1answer
50 views
How to Restore Navigate To Dialog in Visual Studio After Resharper Installation
After installing Resharper 7.1.2 for Visual Studio 2010, when I press Ctrl+, I no longer see the Navigate To dialog. Instead a Resharper dialog Recent Files appears. My question is, is there another ...
0
votes
0answers
26 views
Resharper keeps spawning second QTAgent32 process for some reason sometimes
When I run tests in resharper, sometimes it goes crazy and starts to launch a parallel QTAgent32 process, that heavily loads CPU and when I try to kill it it respawns it, while tests are running.
So ...
1
vote
0answers
26 views
In ReSharper 7, how do I skip unit tests marked with multiple categories?
I have searched the R# documentation and the R# community at JetBrains, as well as here, but I haven't found an answer.
I have something like this: an assembly marked with an Acceptance category. ...
1
vote
1answer
51 views
Why is ReSharper falsely reporting “Incorrect number of arguments”?
I'm using Visual Studio 2010, project is in VB.NET, and I have ReSharper 7.1
It is falsely reporting errors not just warnings or suggestions.
lblAccountID.Text = AccountID.ToString()
ReSharper is ...
1
vote
2answers
190 views
Resharper “can not resolve symbol” even when project builds
My Tools:
VS 2012 Ultimate + Update 1
Resharper v7.1.25.234
My Solution Build Status: Build Successfully
But when i install resharper and resharper code analysis is enable, many keywords of my ...
0
votes
1answer
55 views
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 ...
5
votes
1answer
153 views
Stop ReSharper from Adding Annotations
I'm using ReSharper in my C# projects, and generally I love it. However, it keeps adding annotations to the code when I do certain refactoring actions.
For example, it adds [NotNull] when I use the ...
2
votes
1answer
116 views
Adding a Visual Studio toolbar button for a command that is only available as a keyboard shortcut
This question relates to this ReSharper YouTrack issue.
In Visual Studio 2010 with ReSharper 7.1.1 installed, if I go to Tools > Options > Environment > Keyboard, there is a command called ...
5
votes
1answer
72 views
Resharper warning casting enum to UIntPtr, but no compiler warning
In the code below, Resharper gives me a warning: Cannot cast expression of type 'Color' to type 'UIntPtr'. (Actually, Resharper thinks it's an actual error.)
However, there is no compiler warning and ...
1
vote
1answer
113 views
Resharper ignore unit tests for usage analysis
One of the most useful code analysis tools of Resharper is to mark symbols as not used if no usage if found in the solution.
Unfortunately any symbol that is covered by unit tests is regarded as ...
3
votes
2answers
235 views
ReSharper 7.1 object initializer formatting
When doing something like this:
MyObject tmp = new MyObject();
tmp.Prop = "Hello";
ReSharper tells me to 'Use object initializer', so I let it reformat the code, and I get something like this:
...
0
votes
0answers
58 views
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 ...
0
votes
1answer
94 views
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 ...
3
votes
1answer
129 views
Visual Studio 2012 Strange Signal Icon
I have a class in a VS 2012 project whose signal icon is a black diamond (image below).
I am not familiar with this icon and it is not listed in the VS 2012 Class View and Object Browser Icons ...
6
votes
1answer
655 views
ReSharper intellisense does not display documentation
Any idea why I'm not getting any documentation to go along with my ReSharper IntelliSense? If I go to the ReSharper options and enable the Visual Studio IntelliSense instead, I get the proper ...
1
vote
1answer
155 views
Jasmine + Pahtom.js + ReSharper : Test session don't stop after execution
I write my JS tests using Jasmine and execute then with Phantom.js (1.8.1) on ReSharper (7.1)
Everything runs smoothly as ever, exept that the ReSharper Testrunner's Test Session is not stopped after ...
0
votes
1answer
51 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 ...
1
vote
2answers
185 views
Method invocation is skipped in C#?
I have this simple code :
void Application_BeginRequest(object sender, EventArgs e)
{
Trace.Write("Exception Handling", "......");
}
However re-sharper scream (no-error only ...
3
votes
2answers
131 views
Why does ReSharper think MailMessage.From cannot be null?
[Note: This is similar to Compare string to null - Why does Resharper think this is always false?, but from the source, it appears there is no [NotNull] attribute on MailMessage.From.]
Consider this ...




