coderush

How to display CodeRush menu item in VS ?

I just installed CodeRush to my VS and when I run VS for the first time after installation it showed me a dialog asking if I'm experienced user. While the dialog was visible I could see that there was new menu item in VS named DevExpress. There was a small check box on that dialog saying something about menu items that I probably should ...

CodeRush not working ?

I was using Resharper and I wanted to try CodeRush so I suspended Resharper and installed CodeRush Xpress. When I installed CodeRush version 2010.1.4 (from this downlad page) the shortcuts did not work. I tried F2 and other shortcuts that schold work but they did not. However I was able to invoke some CodeRush functions by clicking rig...

Automatic adition of `using` in CodeRush.

I just installed CodeRush Pro (evaluation trial) for Visual Studio and I can say I like it much so far. Comparing to Resharper there is only one type of feature I'm really missing. It is the way CodeRush deals with using. When I type some class name that is not declared in some package listed in using, CodeRush underlines it red as an er...

Getting all the classes in project and their packages from CodeRush extension

I've spent some time trying to find a way CodeRush could add using when it finds undeclared element that is in the fact class name with no using added. The solution suggested in this answer to my question (Refactor_resolve) does not work (bugged?). In a process I found out that writing plug-ins for CodeRush is easy, so I decided to code...

CodeRush Extract class

In coderush I can extract a method based on my code. Is there a way to extract an entire class? mycode = 5 turns into myclass= new myclass; mycode = mymethod() myclass { methods() { return mycode=5 } } ...

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 when working with large projects. What I am looking for is a list of which features are completely, outright missing in the opponent. An e...

How to disable the "What happened" popup in CodeRush?

This thing was great at first. For example, I comment a group of highlighted code by hitting the slash and the "What happened" dialog pops up and tells me what happened. Now it is just freaking annoying. I only really needed to know what happened the first time. Is there any way to disable this thing? ...

Why should I switch to CodeRush from ReSharper?

For a long time I have been working with ReSharper. But after seeing CodeRush being used in a tutorial video, I started to wonder if I should consider to try CodeRush as well. But before giving a try I wanted to ask you if you've had a chance to work both with ReSharper and CodeRush, so that you could share your objective opinions on t...

How can I reset the intellisense settings in VS 2008?

I've got a fresh install of VS 2008 Standard and I've installed DevExpress DXPerience 2008 with CodeRush! and for some reason, my intellisense decided to half-work. I have: class Person { public string FirstName { get; set; } } I can type: Person p = new Person(); p. ... and intellisense will show none of the members for Perso...

How can I get DevExpress CodeRush to create NUnit test methods with the tm template instead of microsoft test methods in VS 2010

Hello, when I try to execute the test or testmethod templates respectively in visual studio 2010 using t and tm respectively it is giving me ... using Microsoft.VisualStudio.TestTools.UnitTesting; [TestMethod] public void Test() { } I want it to give me the nunit decorator instead and stop adding the using refere...

Problem after install CodeRush and ReFactor

I have installed CodeRush and ReFactor package but i don't see any changes on my Visual Studio 2010 ide. I check add-in and extension manager but i don't see anything belong CodeRush or ReFactor. Do i have to do some extra settings for it ? How can i understand it is installed on Visual Studio 2010 ? ...

Suppress renaming in CodeRush

How do you supress renaming on code rush temporarily because each time I rename a local variable it has this green box on it and even changes my commented code (that uses the local variable I am using) Example: Consider this method: public static tblBadorder GetBadOrderByBadOrderID(int badOrderID) { tblBadorder User = db.Select.F...

coderush templates for MVC

Am in the process of creating my own set of coderush templates for MVC both on the HTML side and in the code-behind. Am wondering if anyone has gone through the same process and has put them anywhere on the public domain where I could obtain them rather than "reinventing the wheel"? Otherwise will put together a list of the templates my...