Tagged Questions
The resharper-5.0 tag has no wiki summary.
21
votes
1answer
2k views
Disable code analysis for current file in ReSharper 5
In ReSharper 4.x there was a shortcut (Ctrl+8) for turning off the code analysis for the current file, but I cannot find the equivalent in ReSharper 5.0. Anyone knows where to find it?
The reason I ...
11
votes
4answers
592 views
Difference between these two ways of localizing a string in an aspx/ascx file?
When I started localizing a website the first time, I just did the localization like this:
<%= Resources.ResourceFile.ResourceName %>
and it seems to work perfectly fine. However, the ...
9
votes
4answers
763 views
If I turn off ReSharper 5's IntelliSense, what am I missing?
During my trial of ReSharper 5, I noticed its version of IntelliSense falls behind Visual Studio 2010's in three ways that were key to me:
ReSharper doesn't support IntelliSense in the ...
7
votes
3answers
341 views
How to find code which is only called by tests
Occasionally I am looking at some code, I search for usages of a method (using resharper) and find that it is only called by tests. So it's effectively redundant and I can delete it and the methods ...
6
votes
1answer
460 views
ReSharper and auto closing parentheses
Is there a way to avoid closing the following parentheses:
String.Format(), or Console.WriteLine() automatically?
Sometimes is this is annoying and unnecessary, and I end up pressing Delete to ...
6
votes
2answers
379 views
How to get Resharper to convert back to a foreach loop
Resharper 5 can convert my foreachloops to Linq queries. Which I like. But linq is way way way harder to debug than a foreachloop.
When I convert my foreach statement to a linq query, I don't see ...
5
votes
1answer
249 views
How do I tell ReSharper that an attribute means that a method is used?
I'm playing with SpecFlow, and ReSharper thinks that my step definitions are unused (I guess because they're used via reflection):
[Binding]
public class StepDefinitions
{
// ...
[When(@"I ...
5
votes
4answers
435 views
Resharper 5.0 - initial impressions
Now that VS 2010 is officially released, I'm thinking of upgrading to Resharper 5.0 and I just wondered if any of you could provide any feedback on your impressions so far.
Some specific questions:
...
4
votes
2answers
315 views
Prevent Resharper “Possible Null Reference Exception” warnings
Let's say I have an interface with a read-only property and and a concrete class where the property is instantiated in the constructor and marked as read-only.
internal interface IExample
{
...
4
votes
1answer
97 views
How can I tell ReSharper to stop creating readonly fields?
This question is similar, but my question seems to get asked in an unanswered comment.
I create a C# class. I use alt-insert to add a constructor. I add an argument to the constructor, and then I ...
4
votes
1answer
362 views
ReSharper 5 Search with Pattern
I just recently ran into the "Search with Pattern" tool in the new ReSharper.
I tried to search for
private $Type$ $Var$ = new $Type$($TypeArgs$);
but when I search it just says "Cannot parse ...
4
votes
1answer
632 views
How to stop ReSharper from showing error on a lambda expression where Action is expected?
In Silverlight, System.Windows.Threading's Dispatcher.BeginInvoke() takes an Action<T> or a delegate to invoke.
.NET allows me to pass just the lambda expression. but ReSharper sees it as an ...
4
votes
6answers
2k views
How good are the resharper 5.0 nightly builds?
They have pretty low stars....
is it at least equivilent of 4.5? or is it just a pain to use?
http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+5.0+Nightly+Builds
3
votes
1answer
316 views
Switch from Resharper 5 Intellisense to Visual Studio Intellisense using a command
Is it possible to go to Resharper -> Options -> IntelliSense -> General and switch from Resharper to Visual Studio using a command in Resharper 5?
I would like to benefit from the Razor ...
3
votes
1answer
205 views
ReSharper 5.0 choking on strong-typed view model that's located in same project
I'm using VS2010, ASP.NET MVC 2, and ReSharper 5.0. When I create a new view that's typed off of a model from the same project as my view, ReSharper doesn't see the reference to the model.
This is ...
2
votes
1answer
189 views
Do free plugins exist that could replace resharper?
I been using resharper 6 trial and I used resharper 5 trail and love the program. However I don't like 2 things about it.
It is expensive
It is a huge resource hog(My CPU usually goes to 100% and ...
2
votes
1answer
103 views
Resharper: Is there a hotkey to disable it when in editor?
I just love resharper 5... its great but sometimes i would like to use the hotkey to disable the lines underlines etc etc in the code editor as it interferes with some other plugins i have...
Is ...
2
votes
1answer
284 views
ReSharper - Conditional Compilation XML comment errors
If I have the following code...
#if PocketPC
/// <summary>Indicates whether usage of the Windows Mobile 5.0+ GPS intermediate driver is allowed.</summary>
private static ...
2
votes
2answers
417 views
What resharper 5 patterns do you use?
As resharper 5 now has DIY patterns, what patterns have you writen that fix coding idioms that you've seen? Is there an online resharper pattern repository? I thought here would be a logical place to ...
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
2answers
449 views
How do I suspend ReSharper 5.0 AND get back the default key settings in Visual Studio 2010?
I have a project with many projects that performs miserably with ReSharper enabled, even on a pretty decent machine (8GB RAM, hybrid solid state hard drive, Core 2 Duo processor).
I was able to ...
2
votes
3answers
918 views
ReSharper 5.0 VS CodeRush 10.1 - Specific Feature Comparison
I'm deciding between ReSharper 5.0 VS CodeRush 10.1. I've seen a lot of questions that target which one is better/faster than the other. For Example, ReSharper may be a little slower than CodeRush ...
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
317 views
C#/Resharper 5 structural search, detect and warn if any non-virtual public methods on classes with certain attributes
I'm using LinFu's dynamic proxy to add some advice to some classes. The problem is that the proxied objects can only intercept virtual methods and will return the return type's default value for ...
1
vote
3answers
92 views
One good video for Resharper rampup
I'm installing it now. I've seen a few videos where people have Resharper installed and it is amazing how fast they are writing code and navigating. In the past, I've had to uninstall Resharper ...
1
vote
1answer
179 views
resharper search with pattern for using(… new System.Data.Linq.DataContext)
I am attempting to search for
using (var context = new $DataContext$())
where DataContext is any class that extends System.Data.Linq.DataContext using Resharpers 'Search with Pattern'.
The ...
1
vote
3answers
220 views
Is it possible to sort code via Resharper?
CodeRush has this nifty plugin called cr_ClassCleaner that allows me to sort the elements in the class (e.g. methods, private variables, etc...).
Can Resharper 5.x do this, either via the product ...
1
vote
2answers
110 views
What are the hidden gems of Resharper 5? [closed]
Possible Duplicate:
What is your favorite use of Resharper?
What is your favorite feature/shortcut/template of Resharper 5 that is not obvious but extremely useful?
1
vote
3answers
362 views
Some ReSharper key mappings not working. How do I add a parameter through refactoring?
I have ReSharper 5.0 for C# running on VS 2008 SP1. Most key combinations like (Ctrl+R, Ctrl+R) for renaming an identifier or (Ctrl+Shift+T) for going to a file work.
I thought I would try some of ...
1
vote
1answer
51 views
Force Resharper to open designer when navigating with CTRL+SHIFT+T
When I press CTRL+SHIFT+T dialog for file search pops up, I find file I'm interested in, and when I press Enter - if file is .resx or .dbml - it's opens in text editor. Can I force Resharper to open ...
1
vote
1answer
69 views
C# how to treat Resharper errors as compile errors in msvs 2010?
I want to treat resharper 5.0 error "Possible NullReference Exception" as MSVS 2010 compile error. Is it possible?
1
vote
1answer
293 views
Do resharper 5 beta stop working?
I got message that the license expired to resharper 5 beta. I waited a few days but nothing was updated.
Is anyone else got this message?
In addition this post says that there is nightly builds.
...
1
vote
2answers
140 views
One R#5 license for VS 2008 & 2010? (only one at a time)
R#5 supports VS2008 and VS2010?
Can I use it in both IDEs on my one workstation with only one license? I won't run the two IDEs at the same time.
0
votes
1answer
19 views
Disabling resharper errors through vs config
We are using resharper in our project, but based on our pattern and pratices we follow different naming conventions for classes,variables and so on. But we still need to use resharper, is there any ...
0
votes
2answers
41 views
Can I search by a reference name, solution-wise, to see in which projects it was referenced?
Is there any possibiliy to searh the whole solution to see a particular refrence's usage?
Let's say, can I see in what projects the reference "Xyxyxyxy.dll" is referenced?
(ReSharper based answers ...
0
votes
2answers
195 views
Resharper 5 vs 6
Back when I had ReSharper 5 my files would have all kinds of syntax highlighting and a bar next to the scrollbar to the right. It was wonderful because it would highlight redundant imports and ...
0
votes
1answer
61 views
How can I change the default create view code generated by resharper via the “View action list -> create view”
I am using Resharper 5, I like to create views by clicking on the red lightbulb then choose Create View from the action list (for example screenshot see http://i.stack.imgur.com/3CyEM.png).
Does ...
0
votes
1answer
36 views
using the ReSharper Tool with VS.NET IDE 2010 for code improvements
I am new to ReSharper and have integrated with Visual Studio 2010. I have found a suggestion in the code as follows,
string query;
query = "SELECT * FROM Employee";
The ReSharper tool asked me to ...
0
votes
2answers
107 views
Full path name of the current file using resharper open api
I am new to Resharper and was trying to write some simple plugins. I wanted to try to get full path of the file I am currently using.
Something Like
"C:\Project1\Firstfile.cs". If I am using ...
0
votes
1answer
277 views
How to use Resharper to localize XAML strings
I use Reshaper 5.1.1 to extract strings to resource files in my Silverlight app. I want to be able to extract strings in my XAML (like Content or Text properties) - but the Move option under Resharper ...
0
votes
1answer
127 views
How to make Resharper place blank lines after { in c#
Does anyone know how to make Resharper add blank lines after brackets when performing code cleanup?
I want to make the following code
if (x == y)
{
int a = x;
int b = y;
int z = a + b;
}
...
0
votes
1answer
45 views
0
votes
1answer
44 views
How to tell ReSharper to use C# 2.0 spec in code issues?
I've begun using ReSharper and really enjoy it. However I have a project which must use C# 2.0 specs. Is there anyway to get ReSharper to base its suggestions off of the 2.0 spec? I keep getting these ...
0
votes
1answer
54 views
Information about upgrading a Resharper plugin to v 5.0
I like the sound of the Exceptional plugin for resharper, but it says it currently only works with v4.5. Does anyone know what is involved with upgrading to 5.0 and how much things have changed, ...
0
votes
1answer
95 views
Resharper API development - Find Incoming calls
I am trying to make a program which will utilize resharper's "find incoming calls" feature. This is not a resharper plugin, but rather a console app (or similar) which finds the incoming calls to all ...
0
votes
1answer
224 views
Using ReSharper 5.0 in VS 2010 web application project with Telerik controls
When using "Cleanup Code" function in ReSharper 5.0, code cleanup removes the aspx page line:
<%@ Register Assembly="Telerik.Web.UI" TagPrefix="telerik" Namespace="Telerik.Web.UI" %>
Seems like ...
0
votes
1answer
853 views
Resharper 5 shortcuts & keyboard schemes
I am used to Finding Usages by hitting Shift-F12, but after switch to R# 5 on vs 2010 that one isn't obviously available.
I've got the keyboard scheme set to Visual Studio, as opposed to the only ...
0
votes
1answer
112 views
Unable to see resharper pop-ups for Ctrl-N and other similar commands
I'm not able to see the resharper pop-ups for Ctrl-N, Ctrl-Shift-N and other similar commands but other resharper shortcuts work fine - rename, stack explorer, run unit tests etc...
Using Resharper ...
-1
votes
1answer
44 views
Adding to ReSharper's 'Related Files' list
From version 5.0 onwards, ReSharper offers a "Go To Related Files" navigation which offers a list of files that R# thinks are related to the file currently being edited: for example, base types, ...