Tagged Questions
11
votes
2answers
3k views
Refactor Pro versus Visual Assist X for C++ Development
There are two major refactoring tools which can be installed for Visual Studio that provide C++ support. The full versions of both tools are $250, and they seem to offer similar functionality. They ...
7
votes
3answers
442 views
Automatic regenerate designer files
Recently I've been making some improvements to a lot of the controls we use, for example give properties default values and making buttons private instead of protected.
By making this kind of ...
1
vote
2answers
143 views
Auto refactoring to string.Format
I have a c# project in VS2008 that have a lot of lines of code that look like this:
string s = "bla blab" + x + "bla bla bla" + y + .... ;
and I would like to covert those strings to a single ...
1
vote
1answer
276 views
Visual Assist X: curly braces are moving during refactoring
I use Visual Assist X, build from 05.01.2009, but the same problem occurred in the previous releases as well. (I run it on MSVS 2005)
When I do some refactoring (like extracting a method), ...
1
vote
2answers
282 views
Is there a way to find all unused code in a .NET project using ReSharper?
I've just done a major, major overhaul on a colleagues project and throughout the process almost everything got rewritten. There was far too much code beforehand.
Now, I am left with the prospect ...
0
votes
0answers
5 views
How to automate renaming files to match class name in Visual Studio 2010
I have several projects whose file names do not match the class names. Is there a way automate a renaming of these files to match the class names in Visual Studio 2010?
Thanks in advance!
0
votes
2answers
55 views
Visual Studio: Automated reference cleaning?
Is there any way of finding out what assemblies that's not used in a solution and have them removed automatically? (Just like when removing unneeded using-statements.)
Side note:
Wouldnt it be nice ...