active questions tagged resharper - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T12:28:34Zhttp://stackoverflow.com/feeds/tag/resharperhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846519/resharper-colors-settings-missed-in-vs-tools-options0Resharper colors settings missed in VS tools/optionsMaciej2009-12-04T11:58:06Z2009-12-07T10:57:25Z
<p>I've missed all Resharper's colors options in VS tools/options/fonts & colors<br>
(There is no entry started with "Resharper" word)</p>
<p>Is it the way to bring them back ?</p>
http://stackoverflow.com/questions/1110516/resharper-running-all-tests-when-only-a-single-one-is-selected1Resharper running all tests when only a single one is selectedBrandon2009-07-10T16:15:18Z2009-12-05T12:00:08Z
<p>I'm using Resharper 4.5 with Visual Studio 2008 and MBUnit testing, and there seems to be something odd with using ReSharpher to run the tests.</p>
<p>On the side there are the icons beside the class each test method with the options Run and Debug. When I select Run it just shows me the results of the single test. However I noticed that the test was taking a considerably long time to run.</p>
<p>When I ran Sql Server profiler and start stepping through the code, I realized that its not just running the selected test, but every single one in the class. Is there any reason it makes it look like its only running one unit test while actually running them all?</p>
<p>Its getting to be a pain waiting for all integration tests to run when I only care about the reuslt of one, is there any way to change this?</p>
http://stackoverflow.com/questions/1797931/how-to-install-mspec-bdd-framework0How to install MSpec BDD Framework?Miriam2009-11-25T16:00:38Z2009-12-04T23:26:46Z
<p>Does anyone know if there is an MSpec installer with R# and/or TestDriven.NET support?</p>
http://stackoverflow.com/questions/1841615/how-to-assign-a-test-file-in-resharper0how to assign a test file in resharper?mrblah2009-12-03T17:42:07Z2009-12-03T17:58:03Z
<p>how to assign a test file in resharper?</p>
<p>whenever I select 'run tests' it says no test file found.</p>
<p>I created a test project, how do I link it?</p>
http://stackoverflow.com/questions/1674374/having-resharper-give-errors-for-all-unused-parameters-except-on-events0having resharper give errors for all unused parameters except on eventsoo2009-11-04T15:04:59Z2009-12-03T15:28:57Z
<p>we want to have resharper complain and show errors every time we have a unused parameter to make sure the developers keep code clean and remove stuff that is not being used</p>
<p>the one area where this falls over is events, because we have a lot of case where you are not using the sender object in the basic pattern.</p>
<pre><code>(object sender, EventArgs args)
</code></pre>
<p>is there anyway to have resharper complain on everything EXCEPT event handlers?</p>
http://stackoverflow.com/questions/1797984/anyone-tried-justcode4Anyone tried JustCode? silverArc2009-11-25T16:05:46Z2009-12-02T19:55:55Z
<p>Have you used <a href="http://www.telerik.com/products/justcode.aspx" rel="nofollow">JustCode</a>? is it better than resharper? seems like performance better. Do I need to uninstall resharper before using JustCode?</p>
http://stackoverflow.com/questions/1832205/resharper-colouring-variables-in-red1Resharper Colouring Variables In RedChloeRadshaw2009-12-02T11:01:32Z2009-12-02T11:49:54Z
<p>Ok - I feel stupid but if I type a variable Resharper highlights the variable RED and then suggests split declaration and assignment</p>
<p>Now I want this suggestion but I do not want the variable to be red</p>
<p>Is there any way to remove this</p>
<p>I ve looked through all the options and still cannot figure this out</p>
<pre><code>public static void Add<S, D>(List<S> source, List<D> destination)
where D : class
{
foreach (S sourceElement in source)
{
destination.Add(sourceElement);
}
}
</code></pre>
<p>EDIT: My problems seems to be the exact same thing as <a href="http://stackoverflow.com/questions/1766810/resharper-suggestion-color-issue">http://stackoverflow.com/questions/1766810/resharper-suggestion-color-issue</a> - I cannot download SP2 VS 2005.</p>
<p>Basically some variables are having red as BACKGROUND</p>
<p>Is there any other option I can use?</p>
http://stackoverflow.com/questions/1831555/intellisense-in-asp-net-mvc-pages-stops-working-after-build0Intellisense in asp.net-mvc pages stops working after buildboris callens2009-12-02T08:50:20Z2009-12-02T08:50:20Z
<p>In my solution there are several projects of which some are asp.net-mvc sites.<br>
In my views (webforms engine) I get intellisence but it is lost as soon as I do a build.<br>
When I clean again, the intellisence comes back.</p>
<p>I use VS2008 with Resharper 4.5</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1828533/using-reshaper-is-there-a-quick-way-to-use-the-last-template-again1using reshaper, is there a quick way to use the last template again?mrblah2009-12-01T20:05:12Z2009-12-01T20:05:12Z
<p>using reshaper, is there a quick way to use the last template again?</p>
http://stackoverflow.com/questions/1224406/namespaces-and-folder-relation0Namespaces and folder relationcoffeeaddict2009-08-03T20:21:45Z2009-11-30T22:25:32Z
<p>Ok, I guess do namespaces have to be the same as the nested folders that their in? I keep getting errors saying that the namespace should be xxx.yyy.zzz.</p>
<p>Example:</p>
<pre><code>Folder1
Folder2
MyControl.cs
</code></pre>
<p>I have a namespace in it defined as:</p>
<pre><code>namespace CustomControls
{
...
}
</code></pre>
<p>so the compiler is complaning that it must be namespace Folder1.Folder2</p>
<p>so is there a direct relation to file structure and namespaces? Are you forced to have a tight relation to these?</p>
http://stackoverflow.com/questions/899330/resharper-on-vs20102Resharper on VS2010 ?Yassir2009-05-22T18:34:34Z2009-11-28T16:25:13Z
<p>Did anybody get resharper 4.5 working on V2010 ? </p>
http://stackoverflow.com/questions/1783041/how-to-do-a-move-type-to-another-file-to-match-its-name-accross-a-complete-solu0how to do a "Move type to another file to match its name" accross a complete solutionFrederik2009-11-23T13:05:48Z2009-11-27T21:39:44Z
<p>Hi</p>
<p>does anyone know of a way to split all classes in one solution into multiple files?</p>
<p>The point here is that I've inherited a project in which a few hundred files contain a thousand or so classes...
I'd like to be able to get to a 1 file per class approach..</p>
<p>Using resharper I can easily do this manually, but I'm guessing there must be a better way?</p>
<p>Kind regards</p>
<p>Frederik</p>
http://stackoverflow.com/questions/1764903/stylecop-spelling-dictionary-2Stylecop Spelling Dictionarysimon8312009-11-19T17:04:59Z2009-11-27T14:56:57Z
<p>I have just started investigating using stylecop, resharper stylecop for resharper.</p>
<p>I get a lot of spelling warnings. Which dictionary is being used, can I change the language and where do I add words to it?</p>
http://stackoverflow.com/questions/1804930/c-what-complex-refactoring-features-do-you-wish-there-were-1[C#] What complex refactoring features do you wish there were?Dmitri Nesteruk2009-11-26T17:39:17Z2009-11-26T17:56:43Z
<p>Tools like CodeRush and Resharper offer lots of simple refactorings, such as 'Rename Variable'. But if you could have any refactoring feature at all (no matter how complex), what would it be?</p>
<p>(I know, everyone wants a 'make program perfect' refactoring, but let's be realistic here.)</p>
http://stackoverflow.com/questions/186970/what-resharper-4-0-live-templates-for-c-do-you-use18What ReSharper 4.0 live templates for C# do you use?Rinat Abdullin2008-10-09T12:07:43Z2009-11-26T01:31:42Z
<p>What ReSharper 4.0 templates for <strong>C#</strong> do you use?</p>
<p>Let's share these in the following format:</p>
<p><hr /></p>
<h2>[Title]</h2>
<p><em>Optional description</em> </p>
<p><strong>Shortcut:</strong> shortcut<br />
<strong>Available in:</strong> [AvailabilitySetting]</p>
<pre><code>// Resharper template code snippet
// comes here
</code></pre>
<p><strong>Macros properties</strong> (if present):</p>
<ul>
<li><strong>Macro1</strong> - Value - EditableOccurence</li>
<li><strong>Macro2</strong> - Value - EditableOccurence</li>
</ul>
<p><hr /></p>
<ul>
<li>One macro per answer, please!</li>
<li>Here are some samples for <a href="http://stackoverflow.com/questions/186970/what-resharper-40-templates-for-c-do-you-use#186978">NUnit test fixture</a> and <a href="http://stackoverflow.com/questions/186970/what-resharper-40-templates-for-c-do-you-use#186978">Standalone NUnit test case</a> that describe live templates in the suggested format.</li>
</ul>
http://stackoverflow.com/questions/1799690/when-doing-a-extract-to-interface-why-doesnt-it-modify-the-interface-previously0when doing a extract to interface, why doesn't it modify the interface previously created?mrblah2009-11-25T20:18:07Z2009-11-25T21:01:55Z
<p>I created an interface in a file, then a class that implements the interface in another file.</p>
<p>If i add a property to the implementation class, is it possible to pass that method signature down to the interface automatically using resharper?</p>
<p>I tried, and it seemed to just create another interface in the same file?</p>
http://stackoverflow.com/questions/1797633/fileloadexception-when-running-unit-tests-in-visual-studio1FileLoadException when running unit tests in visual studioTamar2009-11-25T15:20:05Z2009-11-25T15:28:33Z
<p>I'm trying to run some unit tests in VS 2005 and keep getting the following error</p>
<p><pre><code>System.IO.FileLoadException: Could not load file or assembly<br>
'Tests.CS.vs2005, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))
at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, ref StackCrawlMark stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)
at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, ref StackCrawlMark stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)
at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, ref StackCrawlMark stackMark, Boolean forIntrospection)
at System.Reflection.Assembly.Load(AssemblyName assemblyRef)
at JetBrains.ReSharper.UnitTestProvider.nUnit.NUnitTaskRunner.GetType(IRemoteTaskServer server, RemoteTask fixture, String assemblyLocation, String typeName)
in c:\Agent\work\e1023618541fdc56\src\UnitTestProvider.nUnit\src\NUnitTaskRunner.cs: line 539
at JetBrains.ReSharper.UnitTestProvider.nUnit.NUnitTaskRunner.Start(IRemoteTaskServer server, TaskExecutionNode node, NUnitTestFixtureTask fixture)
in c:\Agent\work\e1023618541fdc56\src\UnitTestProvider.nUnit\src\NUnitTaskRunner.cs: line 353
at JetBrains.ReSharper.UnitTestProvider.nUnit.NUnitTaskRunner.Start(TaskExecutionNode node)
in c:\Agent\work\e1023618541fdc56\src\UnitTestProvider.nUnit\src\NUnitTaskRunner.cs: line 26
at JetBrains.ReSharper.TaskRunnerFramework.CurrentAppDomainHost.Execute(TaskExecutionNode node)
in c:\Agent\work\e1023618541fdc56\src\TaskRunnerFramework\src\Impl\CurrentAppDomainHost.cs: line 86 </pre></code></p>
<p>The assembly <em>Tests.CS.vs2005</em> is the unit test's assembly from which the code is run. This is all set on a local vm while the source code is located on a shared folder from the host. I'm running ReSharper with VS and run the tests through it.</p>
<p>Has anyone encountered this? I'm trying to find the config file that's suppose to contain the reference <em>Tests.CS.vs2005, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</em>, my guess is this is a reference error related to the path to the host machine. Any thoughts on this are welcomed :) </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1790085/resharper-gotchas2Resharper gotchaspsasik2009-11-24T13:31:59Z2009-11-24T14:57:36Z
<p>i absolutely adore ReSharper and would not work without it, but there are a few gotchas that i have run into and learned to avoid:</p>
<ul>
<li>Allowing ReSharper to rename string literals automatically can really bite you in such instances as when your object variables match column names in your DAL SQL or other string constants. i have learned that instead of impatiently hitting the enter key when the second rename dialog appears i really need to see what ReSharper is suggesting and often skip the string literals rename step.</li>
<li>This one is a little more insidious: When you have Solution-Wide analysis turned on ReSharper will tell you whether or not public methods are used. This includes getters and setters in properties. It's a great feature but what ReSharper doesn't know is that when you're designing a view which will be displayed in the designer (form, user ctrl) that the property getters and setters are called at design time and don't show up in compilation. So ReSharper will suggest that those property's getters or setters can be made private or just removed. But if you make the adjustment and then load the view in the designer, the designer will crash because the property is not available and the error message is not exactly obvious. In a nutshell, a programmer needs to carefully consider property usage suggestions when designing a view.</li>
</ul>
<p>Whew! Those are my biggies. What else is out there that could bite me and fellow ReSharper aficionados?</p>
http://stackoverflow.com/questions/1776331/path-to-test-data-files-for-unit-testing0Path to Test Data Files for Unit TestingJoe2009-11-21T18:38:01Z2009-11-23T20:50:32Z
<p>I am currently using the standard Microsoft Unit Test suite in VS 2008. ReSharper 4.5 is also installed. My unit tests rely on an TestInitialize method which pre-loads a data file. The path to this test data file will differ depending on if I run the unit test from within VS 2008 using the standard Ctrl-R + Ctrl-T command versus the Resharper unit test execution command.</p>
<p>How can my TestInitialize method know the correct path to the unit test data files?</p>
<p><strong>Update:</strong></p>
<p>The test data is sizable enough that I don't want to push it into a string so prefer to keep it as an external file. The file structure of my test project is that of the standard unit test project created with an MVC application. Under the root of the test project, a new folder was created called 'Test Data'. It's this folder I'd like to access regardless of test runner.</p>
http://stackoverflow.com/questions/549728/weird-resharper-issue-with-action-lists-that-dont-work3Weird resharper issue with action lists that don't work.swojan2009-02-14T20:22:02Z2009-11-23T13:11:13Z
<p>So we had a power outage at work the other day and ever since then ReSharper and Visual Studio just aren't playing nicely. The issue occurs when I try to click on one of the light bulb action lists, they just disappear. I also noticed that when I compile and there is an error, the error list acts like it's trying to open but doesn't. I have un-installed and re-installed resharper and run a repair on VS. Has anyone else run into this?</p>
<p>You can see an example of what I mean here:
<a href="http://rapidshare.com/files/197237456/resharper.avi" rel="nofollow">http://rapidshare.com/files/197237456/resharper.avi</a></p>
http://stackoverflow.com/questions/1783008/resharper-5-0-cannot-run-ms-tests-in-visual-studio-2010-beta-20Resharper 5.0 cannot run MS tests in Visual Studio 2010 beta 2.Alexey Zakharov2009-11-23T12:57:31Z2009-11-23T13:03:54Z
<p>Hi,</p>
<p>Resharper 5.0 cannot run MS tests in Visual Studio 2010 beta 2.</p>
<p>Have anybody faced such problem? </p>
http://stackoverflow.com/questions/1546618/resharper-doesnt-see-my-machine-specification-tests1ReSharper doesn't see my Machine.Specification testsy0mbo2009-10-10T00:01:43Z2009-11-23T12:53:41Z
<p>I'm having a problem getting ReSharper to see the Machine.Specification "tests" I've written.</p>
<p>The specs run in the ConsoleRunner from mSpec. When I try to "Run Unit Tests" in ReSharper, I get a message: "No tests found in file." The specs don't show the test markers.</p>
<p>I created a folder in the ReSharper /bin/ folder and put the proper .dlls there. The mSpec plug in appears in ReSharper.</p>
<p>What might I be missing?</p>
<p>Also, I'm using xUnit.NET if that makes a difference.</p>
http://stackoverflow.com/questions/1776600/resharper-question-on-exception-warning1resharper - question on exception warningdcp2009-11-21T20:03:37Z2009-11-21T20:34:58Z
<p>Consider this method (pardon the sad attempt at Chuck Norris humor :) ):</p>
<pre><code>public class ChuckNorrisException : Exception
{
public ChuckNorrisException()
{
}
public ChuckNorrisException(string message)
: base(message)
{
}
public ChuckNorrisException(string message, Exception cause)
: base(message, cause)
{
}
protected ChuckNorrisException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
static void ExceptionTest(double x)
{
try
{
double y = 10 / x;
Console.WriteLine("quotient = " + y);
}
catch (Exception e)
{
e = e is DivideByZeroException ? new ChuckNorrisException("Only Chuck Norris can divide by 0!", e) :
e;
throw e;
}
}
</code></pre>
<p>In resharper, I get a warning on the "throw e" line saying "Exception rethrow possibly intended". But obviously in this case that's not the intention, since e could be wrapped in ChuckNorrisException, and if I just use "throw", that wrapped exception wouldn't get thrown.</p>
<p>I know I can suppress the resharper warning, but then it will be turned off for <em>all</em> scenarios if I'm not mistaken. I just wondered if anybody else had encountered this. The only workaround I've found is to make another exception variable (e2, for example), and throw that. That may be the best I can do here. Seems like resharper could detect this issue though and be smart enough to know that if e is modified, then throw e is ok.</p>
<p>Thanks.</p>
<p>[EDIT]
Sorry, I forgot a step. Before the throw, I need to log the exception, so I can't just do:</p>
<pre><code>e = e is DivideByZeroException ? new ChuckNorrisException("Only Chuck Norris can divide by 0!", e) :
e;
throw e;
</code></pre>
<p>I have to do:</p>
<pre><code>e = e is DivideByZeroException ? new ChuckNorrisException("Only Chuck Norris can divide by 0!", e) :
e;
LogException(e);
throw e;
</code></pre>
http://stackoverflow.com/questions/1741573/how-to-repair-resharper1How to repair Resharper?Maciej2009-11-16T11:22:23Z2009-11-21T15:24:52Z
<p>I have problem with Resharper - all it's menu options are greyed, no shortcuts working...<br>
I've tried run installer with repair option - no success<br>
Also tried uninstall / install back - same.. :(</p>
<p>ReSharperSetup.4.5.1288.2.msi</p>
<p>Can someone advice how to make it working back?</p>
http://stackoverflow.com/questions/1773430/resharper-auto-complete-statement0Resharper Auto Complete Statementfirefly2009-11-20T21:45:17Z2009-11-21T15:20:21Z
<p>I know it's probably something easy but I just couldn't figure it out
say I have the following code</p>
<pre><code>string name;
name.LastIndexOf("aaa");
</code></pre>
<p>After I type the single quote reshaper will added another for me so I got</p>
<pre><code>name.LastIndexOf("")
</code></pre>
<p>After I type aaa I got name.LastIndexOf("aaa|") but now my caret | is sitting inside the double quote... </p>
<p>How do I tell Resharper that I am done so it can add the ; and move to the next line without using the mouse or the direction key?</p>
<p>Perhaps I didn't make myself clear. Using the End key is not much different from the directional key. I was looking for a one step key stroke that will tell Resharper to complete the statement and move to the next block. I think it certain possible since Resharper is so smart. I just couldn't figure it out.</p>
http://stackoverflow.com/questions/1766810/resharper-suggestion-color-issue0Resharper Suggestion Color IssueBryan Rowe2009-11-19T21:48:46Z2009-11-21T14:14:38Z
<p>I have a strange bug in resharper 4.5 in VS 2005. Instead of doing the usual underline for a suggestion -- IE: telling me that a using statement is unnecessary, it is setting the background to red in the same manner as a breakpoint. Here is a <a href="http://tinypic.com/r/2q0n69v/6" rel="nofollow">screenshot</a>.</p>
<p>I have uninstalled and reinstalled several times, including an install of resharper 5.0 to no avail. I also went into the fonts/color section in the options and have set the Resharper options to standard squiggly underlines. I have also tried resetting the colors to default, and I also tried deleting my .resharper files and .suo files out of desperation.</p>
<p>Has anyone run into this issue? Are there any suggestions that I could try to reset resharper?</p>
http://stackoverflow.com/questions/1762724/stylecop-for-resharper3StyleCop for ReSharperAJM2009-11-19T11:42:05Z2009-11-19T12:04:51Z
<p>I like stylecop and we use it to enforce coding standards.</p>
<p>I dont like the fact that there is no way to automatically fix problems. So was thinking of making a plugin. Once I realised that 2010 is better for doing this I backtracked.</p>
<p>I've been looking for an existing tool to help automate this process and have come across stylecop for resharper. <a href="http://stylecopforresharper.codeplex.com/" rel="nofollow">http://stylecopforresharper.codeplex.com/</a></p>
<p>Has anyone got any positive/negative experiences of using this plugin</p>
http://stackoverflow.com/questions/1694369/resharper-autocomplete-issue0Resharper Autocomplete IssueGene2009-11-07T20:50:07Z2009-11-18T16:44:48Z
<p>Hi All,</p>
<p>I've been using resharper with the resharper automplete off (just find VS better for my purposes currently), but despite trying every setting I've tried, whenever I use a resharper template (such as tab-completing an if -> if block), the resharper autocomplete dialog comes up in addition to the visual studio dialog (thus if they don't autocomplete to the same thing, or I accidentally hit enter, whatever I originally typed is replaced with the wrong resharper suggestion, effectively highlighting why I turned it off in the first place).</p>
<p>A. Has anyone every seen this before? (I ask since I might have turned on/off a number of settings in a strange/incompatible way and perhaps a clean install might clear it up.)</p>
<p>B. Any suggestions? :)</p>
<p>(Visual Studio 08 SP1, Resharper 4.5.2 - only other tools installed are DevExpress, but they have long since been disabled)</p>
<p>Thanks all!</p>
http://stackoverflow.com/questions/191950/how-to-resolve-incorrect-ambiguous-reference-from-resharper-on-class-inheritanc3How to resolve incorrect "Ambiguous reference" from Resharper on class inheritance? Carlton Jenke2008-10-10T15:44:58Z2009-11-15T16:29:31Z
<p>In my project I have a class that is inherited by many other classes. We'll call it ClassBase.</p>
<pre><code>public class ClassInheritFromBase : ClassBase
</code></pre>
<p>When ClassBase is being inherited, Resharper throws an "Ambiguous reference" warning on the ClassBase, and anything inside the new class that inherited from ClassBase does not have Intellisense and gets warnings that it cannot find it.</p>
<p>The project compiles and run fine.</p>
<p>If I change the namespace ClassBase is in and then change the inheriting classes, they find it fine and Resharper has no problem, Intellisense works ... until it is compiled. After the compile it goes back to having the ambiguous reference warnings and everything else.</p>
<p>Anybody seen this before and know how to fix? I saw an entry in JetBrains bug tracking for an issue just like this, but they closed it as unable to reproduce.</p>
http://stackoverflow.com/questions/1737578/cannot-debug-unit-tests-with-resharper-testrunner1Cannot debug unit tests with resharper testrunnerdornbraek2009-11-15T13:54:42Z2009-11-15T14:09:06Z
<p>I'm trying to debug a unit test with the resharper testrunner but it's not working. Before my breakpoint is hit Visual Studio pops up a message box "There is no source code available for the current location." If I press OK it says LoadFromContextException. </p>
<p>Ideas anyone?</p>