Questions tagged [coderush]

CodeRush is a Productivity tool by DevExpress that extends the functionality of Microsoft Visual Studio 2010, 2012 and 2013.

CodeRush provides many features designed to enhance your productivity within Visual Studio.

Key features include refactorings (180+), code providers (70+), visualization tools, advanced selection tools, clipboard tools, navigation tools, code templates (900+), unit test runner and extensibility model.

It also provides static analysis tools like CodeIssues and Metrics which draw you attention to potential problem areas of your code.

It supports C#, VB.NET, ASP.NET, ASP.NET MVC, XML, XAML and JavaScript. The software works in all versions of Visual Studio since Visual Studio 2002; excluding Visual Studio Express editions.

139 questions
1
vote
1 answer

How do I change test stub framework?

When I stub out a test with CodeRush, it is automatically inserting a using statement for NUnit when I already have a using statement for MBUnit. Is there a way to change the default test framework used when using the templates? I was unable to…
Ryan H
  • 453
  • 5
  • 19
1
vote
2 answers

Can CodeRush plugins target languages other than C# or VB?

I am trying to write a CodeRush plugin that works similar to the XML Doc Comment Painter. My plugin, which uses a TileVisual adornment, works fine for decorating comments in C# files, but does not work for comments in F# files. How can I specify…
Johan
  • 660
  • 1
  • 6
  • 13
1
vote
2 answers

How do I get rid of annoying code tips in Visual Studio 2010?

When I first open Visual Studio 2010, I accidentally said "Yes" to help/code tips or something. Now whenever I type code, I get these annoying pop-ups explaining what happened or trying to improve my code, etc. These help tips are making it…
Lifes
  • 1,226
  • 2
  • 25
  • 45
0
votes
3 answers

Coderush express seems doesn't work

I installed Coderush express and I can see that it is installed. (I can see that Camel Case Navigation works). But I can see any other feature works. Based on this page:…
mans
  • 17,104
  • 45
  • 172
  • 321
0
votes
1 answer

How to save changes and build using a single key stroke in Visual Studio 2022?

I have F1 mapped to Save.AllFiles. In VS 2019 I used to use a VS extension called BuildOnSave which would build the solution upon saving. There's no version of it for VS 2022. In VS 2022 I have one function key to save and another to build. The…
Tony_Henrich
  • 42,411
  • 75
  • 239
  • 374
0
votes
2 answers

Moving from coderush to resharper

I am about to make the switch to resharper from coderush after using it for 30 days and have some questions I would like to see if I can get some help on. 1: Can you change the resharper code colors? I tend to prefer dark themes so I would like to…
deanvmc
  • 5,957
  • 6
  • 38
  • 68
0
votes
1 answer

Delete a specific file with a shortcut key

Is there a way to delete a specific file or 2 files with a shortcut key in Visual Studio? The path is will be a dynamic path of the current selected/active project. That is no matter for me to use a 3rd party tool, macros, extensions, batch files,…
Kasrak
  • 1,509
  • 4
  • 24
  • 48
0
votes
2 answers

How can I get CodeRush to fix my typing? ( {Get; set;} to {get; set;} ) (spellcheck/capscheck)

My most common issue is the caps is still on when I get to Get in a property setter. I know ReSharper does this, but, doesn't CodeRush? When I type: public int Count {Get; set;} I want public int Count {get; set;} Where does one change this?
Jim
  • 804
  • 6
  • 17
0
votes
3 answers

Implement interface feature dissapeared after installing coderush for C#

After seeing some nice recommendations for CodeRush C# I decided to give it a try. After installing it, loading of VS2008SP1 took way longer But way more worse, lots of default features have disappeared All the ctrl + features have gone. No more…
Boris Callens
  • 90,659
  • 85
  • 207
  • 305
0
votes
1 answer

How to jump words in text editor

I used to be able to hold down the Ctrl key and press arrows to jump over words in a text for navigation or selection of text. I even had it configured that it would respect camelhumps. However after a new installation of Visual Studio these…
MrFox
  • 4,852
  • 7
  • 45
  • 81
0
votes
1 answer

Unknown profiler issue when using Typemock and CodeRush

I'm using VS 2017 and Typemock version 8.6.9. I've been working with CodeRush as a test runner for a while and it worked perfectly. Now I started using their coverage tool and got the following error: *** Unknown profiler is enabled please contanct…
HilaB
  • 179
  • 2
  • 14
0
votes
1 answer

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…
user486523
0
votes
0 answers

Why is CodeRush inconsistent in detecting which namespace aliases are necessary?

I had this: using Excel = Microsoft.Office.Interop.Excel; . . . private Excel.Application _xlApp; private Excel.Workbook _xlBook; private Excel.Sheets _xlSheets; private Excel.Worksheet _xlSheet; CodeRush said the "Excel." for _xlBook, _xlSheets,…
0
votes
1 answer

How do I make CodeRush work with both VS2012 and VS2013?

I am trying to make CodeRush 15.1.4.0 (trial) work on both VS2012 and VS2013 on the same machine. It runs fine on VS2012 but on VS2013 only IntelliSense is working - the rest of the tools are gone. On another machine with only VS2013 installed,…
Victor Ian
  • 1,034
  • 13
  • 26
0
votes
1 answer

Unable to run xUnit Test with Code Rush runner in VS 2012 without an exception

When I create a unit test project with DevExpress in VS2012 it fails right out of the box with an exception in Microsoft.VisualStudio.TestPlatform.Core. Adding an Assert so the Sub actually does something doesn't help. No amount of…
DanM7
  • 2,203
  • 3
  • 28
  • 46