Code Formatting Style Profiles
Is there a way in resharper to setup formatting profiles that I can switch between? For example, I write code for one project using one formatting set and can switch to a different project and apply a different formating style.
As a example, one project may want their code formatted with
Method1( parameter1, parameter2 );
and another project with
Method1( parameter1,
parameter2 );
Please sign in to leave a comment.
Hello John,
You may try creating different settings file for specific project as described here http://blog.jetbrains.com/dotnet/2012/01/18/per-project-settings-or-how-to-have-different-naming-styles-for-my-test-project/ and adjust needed formatting settings there.
Hope it helps!
Thanks!