Tagged Questions
The resharper-4.5 tag has no wiki summary.
15
votes
2answers
825 views
Is there a way to mark up code to tell ReSharper not to format it?
I quite often use the ReSharper "Clean Up Code" command to format my code to our coding style before checking it into source control. This works well in general, but some bits of code are better ...
9
votes
1answer
582 views
How to change the formatting of the “Use Object Initializer” refactoring in Resharper?
When I refactor the following line:
Employee e = new Employee();
e.First = "Frank";
e.Last = "Rizzo";
using Resharper's "Use Object Initializer", I get the following:
Employee e = new Employee
...
4
votes
1answer
114 views
Is there a way to make Resharper 4.5 understand a multi-line TODO or NOTE?
Is there a way to make Resharper 4.5 understand a multi-line TODO or NOTE?
For example, this will show up as two items in the TODO explorer:
// NOTE: Because of the external dependency, this ...
3
votes
1answer
177 views
Move type from one project to another via Resharper?
I have several interfaces and classes that i have in my business layer project and i want to move them into a brand new project. I am using Resharper 4.5.2. Is there any way I can do that easily and ...
3
votes
2answers
859 views
ASP.NET (MVC) jQuery Intellisense -> Error in ReSharper
I'm working on an ASP.NET MVC project using jQuery.
I'm referencing the jQuery VSDoc file (jquery-1.3.2-vsdoc.js) in order to get Intellisense for jQuery in Visual Studio:
<% /* %><script ...
3
votes
5answers
1k views
Solution Wide Analysis Broken in Resharper 4.5?
I'm having trouble with solution wide analysis since I upgraded to resharper 4.5.
I'm continually getting false negatives, and having resharper report errors with my code that are not there.
I find ...
2
votes
2answers
154 views
Resharper 5 - are speed & memory bloat issues solved?
I am on Resharper 4.x and VS2008.
R# seems to slow down the living crap out of VS2008. And of course, the memory usage can easily go to 500MB on a middle of the road Winforms solution with 7-8 ...
2
votes
0answers
136 views
How do I upgrade ReSharper 4.5 settings to ReSharper 5.0 settings
I've recently upgraded my code from Visual Studio 2008 .NET 3.5 to Visual Studio 2010 .NET 4.0.
I've used ReSharper 4.5 and now I'm using ReSharper 5.0.
I want my ReSharper 4.5 settings (the ones in ...
2
votes
1answer
386 views
2
votes
1answer
50 views
Resharper 4.5: How can I discard an interface and change all references to the only implementation?
Given:
I have an interface.
I have only class that implements that interface.
Question:
With Resharper 4.5 - How can I discard that interface and change all references to the only ...
1
vote
1answer
31 views
ReSharper 4.5: Code coloring options don't seem to be applied for me in VS 2008 SP1
When I go to Tools->Options->Fonts and Colors I am able to see all of the ReSharper options. The only problem is that even when I change the color for "ReSharper Field Identifier" or "ReSharper Local ...
1
vote
1answer
789 views
How to reset the “Don't show this dialog again” settings for Visual Studio and resharper
In a Visual Studio project (C#), I attempted to perform a rename of a namespace using the Resharper shortcut (Ctrl-R+R). However, because I had branched some of the files that used the namespace from ...
1
vote
4answers
849 views
ReSharper Code Snippet for Auto-Property
Is there a way to create an auto property via code snippet using ReSharper? Like the prop for VS?
1
vote
1answer
147 views
How to prevent ReSharper from shortening namespaces when adding using directives?
When I use ReSharper to add a using directive (using Alt+Enter) it removes "unnecessary" parts of the namespace. I prefer using the full namespace which is also the behavior of Visual Studio.
...
1
vote
4answers
521 views
How to repair Resharper?
I have problem with Resharper - all it's menu options are greyed, no shortcuts working...
I've tried run installer with repair option - no success
Also tried uninstall / install back - same.. :(
...
1
vote
2answers
160 views
Resharper warnings window
I'm using ReSharper for my solution (that contains 10 projects) and I'd like to see the hints/suggestions/warnings/errors (listed in a window) for a chosen project. How can I do that?
Note: the ...
1
vote
2answers
172 views
Resharper - How to change 'local variable _ is never used' to be a suggestion
I need to change this to be a suggestion and not a warning, but I cannot find the setting to do so.
Where is it?
This is the code that needs to pass (not a compilier warning). It is saying that ...
0
votes
0answers
117 views
Resharper indenting comments between if and corresponding else
I am looking for the setting to tell Resharper to not indent comments that come between an if and its corresponding else.
Example:
if()
{
}
//Resharper keeps indenting this line
else
{
}
I ...
0
votes
1answer
674 views
resharper 4.5 making VS2008 very slow especially with ASPX pages
I am using Visual studio 2008 with Resharper 4.5 add-in. the Visual studio performs well on its own, but when I add resharper it slows down and VS freezes for a while every time I type and save the ...
0
votes
1answer
66 views
Resharper 4.5 Extract method - Can't get Function!
I am using Resharper 4.5 in Visual Studio 2008. Whenever I try to extract a block of code into a method, it tries to create a subroutine and not a function. The return type option is disabled. Does ...
0
votes
2answers
242 views
Resharper - private vs backing field
Is there a way to tell R# to apply different naming strategy for property backing fields (_camelCase) vs class instance fields (camelCase)?
Reason: I want my dependencies to be named just a any other ...
0
votes
2answers
634 views
How to autocorrect xml documentation of methods
In the below code in xml documentations there is mismatch between the names of parameters in method's arguments and name of parameters in xml documentation. Is there any way to auto correct the xml ...
0
votes
2answers
293 views
How can Resharper be made aware of the framework version?
I am coding in VS2008 with Resharper 4.5.1, but the projects are set to target .NET Framework 2.0.
Still, Resharper is making suggestions that are relevant to the .NET 3.5 framework. For instance, it ...
0
votes
1answer
74 views
Unistalling ReSharper 4.5 took away right-click code editor context menu for VS 2008!
Environment Context
Windows 7 (hosted in Virtual Box 3.0.4)
Visual Studio 2008
Resharper 4.5
Issue
After uninstalling Resharper 4.5 from VS2008 the "normal" code editor context-menu (mouse right ...