What are some macros that you have found useful in Visual Studio for code manipulation and automation?
|
2
|
|
|
|
|
|
This is my macro to close the solution, delete the intellisense file, and reopen the solution. Essential if you're working in native C++.
|
||||
|
|
|
I'm using Jean-Paul Boodhoo's BDD macro. It replaces whitespace characters with underscores within the header line of a method signature. This way I can type the names of a test case, for example, as a normal sentence, hit a keyboard shortcut and I have valid method signature. |
||
|
|
|
|
This is one I created which allows you to easily change the Target Framework Version of all projects in a solution: http://geekswithblogs.net/sdorman/archive/2008/07/18/visual-studio-2008-and-targetframeworkversion.aspx |
||
|
|
|
|
This is one of the handy ones I use on HTML and XML files:
It's useful when you have to do any kind of data entry and want to escape everything at once. |
||
|
|
|
|
You might want to add in code snippets as well, they help to speed up the development time and increase productivity. The standard VB code snippets come with the default installation. The C# code snippets must be downloaded and added seperately. (Link below for those) As far as macros go, I generally have not used any but the working with Visual studio 2005 book has some pretty good ones in there. C# Code snippets Link: http://www.codinghorror.com/blog/files/ms-csharp-snippets.7z.zip (Jeff Atwood provided the link) HIH |
||
|
