The resharper-5.1 tag has no wiki summary.
2
votes
3answers
181 views
Extend file renaming in VS 2010
I want to be able to rename classes with associated file in VS without loosing file history in Perforce.
I thought I could include an Perforce command (p4 move...) in file renaming of Visual Studio
or ...
2
votes
2answers
98 views
Move class into other class by ReSharper
I have a not-nested class WillBeNestedClass and another class NestBox.
Now I want to move class WillBeNestedClass into class NestBox as a nested class. So WillBeNestedClass will be nested in class ...
2
votes
2answers
362 views
Automatically rename class to match file name
I have a class A in file B.cs. Now I want to rename this class to match the file name (B).
Is there a refactoring or context action in VS or ReSharper which automatically can do this renaming for ...
1
vote
3answers
83 views
How to automatically copy a property declaration to base class
I have a property A in all subclasses of base class Base.
How can I generate an abstract property definition of property A into base class Base?
I know ReSharper's refactoring Pull Members Up, but ...
1
vote
1answer
70 views
In resharper 5.1 how do you turn back on the code inspection to offer to covert foreach loop to linq expressions
I'm not sure this is the right forum if it's not please feel free to move it...
In in VS2010 , in Resharper 5.1 how do you turn back on the code inspection to offer to covert foreach loop to linq ...
5
votes
1answer
88 views
Auto highlight return lines
Eclipse (at least when using Java) has the feature to auto highlight all lines in a method where method returns when I place cursor on return type in method definition.
Is there also such a feature ...
3
votes
2answers
1k views
Ignore IgnoreAttribute
We have MSTest tests which automatically run in hourly production.
One of these tests is marked with [Ignore] attribute because it is not yet ready to run it in our production environment.
Now I want ...
0
votes
1answer
120 views
Resharper Testrunner running a class without [TestFixture] - why?
We're using VS 2008 and Resharper 5.1 (C#) and NUnit 2.4.8.
I have this base test class which does not have a [TestFixture] attribute:
public class BaseTestCasesFixture: BaseFixture
{
protected ...
11
votes
2answers
471 views
Disable resharper warnings that are dependent on build type
I'm using belt and suspenders type checking for potential null object problems. Resharper isn't playing nicely though. In a debug build it marks the if (button != null) check as always true and puts ...
0
votes
1answer
151 views
resharper 5.1 test runner using nunit. Cannot see section in config file
Using resharper testrunner and running into a problem that cannot find config sections in my config file.
I have checked the config file and it has all the sections required.
Could it be that for ...
0
votes
1answer
73 views
ReSharper 6.0 Conflicting with Symantec Endpoint Protection
ReSharper 6.0 seems to be conflicting with Symantec Endpoint Protection on my XP Pro SP3 machine at work. It causes the machine to automatically reboot after I randomly do things with ReSharper. If ...
1
vote
1answer
161 views
How do I adjust the left margin on parameters in ReSharper/VS2010?
This is silly, but when I have something like this
SomethingStupid.Whatever(string a, string b, string c);
And then I break them off like this:
SomethingStupid.Whatever(string a,
string b,
...
3
votes
1answer
360 views
Find usages not working for code which is not built because of pragma
If I'm building a debug solution and I have
#if !DEBUG
public void DoA()
{
DoB();
}
#endif
public void DoB()
{
}
When I use resharper to do a Find Usages on DoB nothing is found. The purpose ...
2
votes
3answers
1k views
Is there any way to disable ReSharper Web Form/MVC (.aspx) Code Formatting on Brace ( } ) Completion?
Is there any way to disable ReSharper Web Form/MVC (.aspx) Code Formatting on Brace ( } ) Completion?
It is really frustrating and most of the time is not what I want. For instance if I have:
<% ...
0
votes
2answers
402 views
Automatically attaching to support behavior not completely successful
I have a Visual Studio 2010 solution containing several C# projects, with Resharper 5.1 installed and enabled. All these projects target the .NET Framework 4.
This solution has been working fine for ...
6
votes
2answers
1k views
Inherited test class from generic base is ignored in MSTest
When creating a generic base test class in MSTest, and inheriting from it, I'm unable to run the tests of all the inheriting classes.
BaseDependencyPropertyFactoryTest is located in the ...
0
votes
1answer
342 views
resharper “cannot resolve symbol absmiddle”
I have resharper 5.1. When I analyze "Errors in Solution" I get a lot of the same error in my aspx files. The error is:
cannot resolve symbol 'absmiddle'
It occurs on a line of code like this:
...
5
votes
1answer
656 views
Can you get ReSharper to display exceptions in Intellisense?
I'm a fan of the overridden Intellisense behaviour provided by ReSharper. However, I can't seem to get it to display exceptions (anything with the /// <exception cref="SomeExcpetionName"/> xml ...
5
votes
2answers
230 views
strange Resharper warning on MemberInfo.DeclaringType
Resharper tells me that MemberInfo.DeclaringType can never be null:
However when that code is run, the text "Top level member" is printed. I don't get it, what's wrong here?
4
votes
1answer
353 views
How do I stop Resharper from running my Specifications project when I Run All Tests from Solution?
I have a bunch of unit test projects for various other projects, and I have one Specifications project for the web application which runs Selenium 2 code via NUnit. This takes a much longer time to ...
1
vote
1answer
317 views
Can't find settings for “naming rule” in Resharper!
I got tired of Reshaper complaining on any variables I have named as "varID" to change to Camel Case (i.e. "varId").
So I tried to add a rule in Resharper under
Edit 'Local Variables' Rule ...
