codeformatter icon indicating copy to clipboard operation
codeformatter copied to clipboard

Tool that uses Roslyn to automatically rewrite the source to follow our coding styles

Results 93 codeformatter issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, i am new to codeformatter and just downloaded release build Code Formatter 1.0.0-alpha6. After extracting the zip, i run codeformatter.exe on a solution file and it get stuck on...

With CodeFormatter, how can you tell it to ignore certain files like Reference.cs which are autogenerated files? These take a long time to parse; in our case it takes 2-5...

I didn't read the README thoroughly and tried the above switches to get the usage. Each one of them generates an exception: ``` C:\cygwin64\home\james>CodeFormatter /? ? Unhandled Exception: System.AggregateException: One...

My private const fields were not converted from MY_CONSTANT to MyConstant (All uppercase to Pascal Case). I also did not find a rule that did this.

Hi, Isn't there anyway to download nightly build. Eg: AppVeyor automated build. Thanks

I've used the tool over a .csproj project and nothing happened. I haven't found any documentation about how to use it. Could you please upload a mini how-to to teach...

I configured in the pre-build step the execution of codeformatter on all projects. It works fine but I have unnecessary recompilations. Even if the format was already done and when...

Codeformatter's command line interface will remain the same. The user of codeformatter won't notice that the rules are now implemented as analyzers/fixers; that’s an implementation detail. Codeformatter will simply calls...

Hi, i detected unusual behavior while testing code formatter. Original Code ``` class A { public int F1; private int F2; protected int F3; public static int SF; public int...