Tagged Questions
9
votes
4answers
766 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 ...
6
votes
1answer
461 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
380 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 ...
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
633 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
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
190 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
3answers
922 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
137 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
318 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
367 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
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.
...
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
197 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
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
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, ...
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
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
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 ...