Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would love to configure Visual Studio/ReSharper to run "Code cleanup" whenever I save a file.

A bonus would be to configure this only for C# files, as I sometimes find that the cleanup on ASP.NET files does not work without introducing errors.

share|improve this question

2 Answers

up vote 14 down vote accepted
+25

You could record a macro(Ctrl+E, Ctrl+C,Run, Ctrl+S). Then run that instead of saving. Then all you need to do is assign CTRL+S to your macro.

Public Module RecordingModule
    Sub CLEAN_AND_SAVE()
    DTE.ExecuteCommand ("ReSharper.ReSharper_CleanupCode")
    DTE.ActiveDocument.Save
    End Sub
End Module

This method will show the code clean-up dialogue box where you will have to select Run.

To remove the user interaction you will have to select a profile to run when Code Cleanup is invoked. You can configure this by going into ReSharper | Options | Tools | Code Cleanup and selecting the profile in "Profile to use with silent clean-up" drop down. Its also here where you can create a custom profile to specify what changes to your code to make. In 4.5 however it does not allow you to omit aspx pages. The only differentiator is C# and VB.Net.

Useful link: http://www.jetbrains.com/resharper/features/code_formatting.html

share|improve this answer
4  
if you want to run the clean up silently then you need to ExecuteCommand("ReSharper_SilentCleanupCode") instead and have set a silent code clean-up option – Sam Holder Oct 26 '10 at 17:05
Not for VS2012, support for macro's is dropped (stackoverflow.com/a/12065139/23805) – bob May 8 at 13:37

I just published a free Visual Studio Extension that automates a similar script, for easier setup. You might want to give that a try at http://developerintheflow.blogspot.ch/2012/10/keeping-code-formatted-easy-way.html.

share|improve this answer
1  
thanks, you just saved me from writing this myself :) – Sam Holder Nov 23 '12 at 10:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.