CSharpier.MsBuild 0.10.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CSharpier.MsBuild --version 0.10.0                
NuGet\Install-Package CSharpier.MsBuild -Version 0.10.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpier.MsBuild" Version="0.10.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharpier.MsBuild --version 0.10.0                
#r "nuget: CSharpier.MsBuild, 0.10.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CSharpier.MsBuild as a Cake Addin
#addin nuget:?package=CSharpier.MsBuild&version=0.10.0

// Install CSharpier.MsBuild as a Cake Tool
#tool nuget:?package=CSharpier.MsBuild&version=0.10.0                

CSharpier

CSharpier is an opinionated code formatter for c#. It uses Roslyn to parse your code and re-prints it using its own rules. The printing process was ported from prettier but has evolved over time.
CSharpier provides a few basic options that affect formatting and has no plans to add more. It follows the Option Philosophy of prettier.

Work In Progress

CSharpier is still in active development and the rules it uses to format code are not yet finalized and will change over time.

If you can live with the fact that the formatting will be changing over time, it is safe to use. In addition to a steadily growing set of unit tests; csharpier is tested against ~60k c# files from a range of public repositories to validate it does not result in the lose of any source code.

Features

  • It is fast. It can format a solution of ~11,000 files in ~30 seconds.
  • It supports validating the syntax of the code it produces to ensure the only changes made were whitespace and line breaks.
  • It formats c# ⇐ 9.0 - c# 10 coming soon

Try it out at Playground

Before

public class ClassName {
    public string ShortPropertyName {
        get;
        set; 
    }

    public void LongUglyMethod(string longParameter1, string longParameter2, string longParameter3) { 
        this.LongUglyMethod("1234567890", "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
    }
}

After

public class ClassName
{
    public string ShortPropertyName { get; set; }

    public void LongUglyMethod(
        string longParameter1,
        string longParameter2,
        string longParameter3
    )
    {
        this.LongUglyMethod(
            "1234567890",
            "abcdefghijklmnopqrstuvwxyz",
            "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        );
    }
}

Installation

dotnet tool install -g csharpier

Basic Usage

Run csharpier from the directory you wish to format to recursively format all .cs files

dotnet csharpier .

Run csharpier on a specific file

dotnet csharpier /src/UglyUnformattedFile.cs

MsBuild Package

If you prefer to have csharpier run when a project is built, you can use the CSharpier.MSBuild nuget package

Install-Package CSharpier.MSBuild

Documentation

Command Line Interface
Configuration File
Editors and CI/CD
Integrating with Linters/Formatters
Ignoring Files
ChangeLog
MSBuild Package

Contributing

See Development Readme

Join Us Discord

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • net5.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (15)

Showing the top 5 popular GitHub repositories that depend on CSharpier.MsBuild:

Repository Stars
Tyrrrz/YoutubeDownloader
Downloads videos and playlists from YouTube
Tyrrrz/DiscordChatExporter
Exports Discord chat logs to a file
Tyrrrz/CliWrap
Library for running command-line processes
Tyrrrz/YoutubeExplode
Abstraction layer over YouTube's internal API
Tyrrrz/LightBulb
Reduces eye strain by adjusting gamma based on the current time
Version Downloads Last updated
0.28.2 78,180 4/26/2024
0.28.1 4,605 4/16/2024
0.28.0 20,502 4/7/2024
0.27.3 41,461 2/18/2024
0.27.2 19,898 1/28/2024
0.27.1 11,682 1/24/2024
0.27.0 13,550 1/15/2024
0.26.7 23,009 12/16/2023
0.26.6 1,704 12/14/2023
0.26.5 6,630 12/10/2023
0.26.4 4,773 12/2/2023
0.26.3 7,532 11/23/2023
0.26.2 10,699 11/16/2023
0.26.1 4,569 11/9/2023
0.26.0 2,008 11/6/2023
0.25.0 60,756 6/25/2023
0.24.2 15,944 5/5/2023
0.24.1 31,721 4/26/2023
0.24.0 409 4/26/2023
0.23.0 16,031 3/6/2023
0.22.1 23,887 1/18/2023
0.22.0 42,099 1/15/2023
0.21.0 13,568 11/29/2022
0.20.0 8,821 10/3/2022
0.19.2 2,577 9/15/2022
0.19.1 1,144 8/27/2022
0.19.0 851 8/15/2022
0.18.0 6,526 6/13/2022
0.17.0 3,187 5/23/2022
0.16.0 6,005 3/26/2022
0.15.1 2,346 2/14/2022
0.15.0 2,455 2/9/2022
0.14.0 806 1/22/2022
0.13.0 5,387 1/3/2022
0.12.0 3,808 11/30/2021
0.11.2 6,163 11/16/2021
0.10.0 618 10/18/2021
0.9.9 7,457 8/23/2021
0.9.8 921 7/27/2021
0.9.7 493 6/26/2021
0.9.6 360 6/12/2021
0.9.5 364 6/1/2021
0.9.4 385 5/24/2021
0.9.3 544 5/24/2021