CSharpier alternatives and similar packages
Based on the "Tools" category.
Alternatively, view csharpier alternatives based on common mentions on social networks and blogs.
-
ShareX
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from. -
YARP
A toolkit for developing high-performance HTTP reverse proxy applications. -
Visual Studio Uninstaller
Uninstall and clean up all components of Visual Studio. -
NETworkManager
A powerful tool for managing networks and troubleshoot network problems! -
Open Live Writer
An open source fork of Windows Live Writer -
UnitsNet
Makes life working with units of measurement just a little bit better. -
Myrtille
A native HTML4 / HTML5 Remote Desktop Protocol and SSH client -
Downloader
Fast, cross-platform and reliable multipart downloader with asynchronous progress events for .NET applications. -
SmartCode
SmartCode = IDataSource -> IBuildTask -> IOutput => Build Everything!!! -
Fake JSON Server
Fake JSON Server is a Fake REST API that can be used as a Back End for prototyping or as a template for a CRUD Back End. -
Mockaco
🐵 HTTP mock server, useful to stub services and simulate dynamic API responses, leveraging ASP.NET Core features, built-in fake data generation and pure C# scripting -
Workflow Server
Workflow Server is a ready-to-use Workflow Engine-based application that you can deploy into your infrastructure. It can be integrated with NodeJS, PHP, Ruby, .NET, or Java applications via a REST API. Workflow Server is a key component for managing the lifecycle of business objects within your enterprise. -
Infinity Crawler
A simple but powerful web crawler library for .NET -
posh-dotnet
PowerShell tab completion and tooltip support for the dotnet CLI. -
CatLight
Build status notifications for TFS/Jenkins/Travis/Appveyor. Cross-platform desktop app based on .Net Core and Electron. [Free][Proprietary] -
JSON Formatter and Validator
A blazing fast JSON formatter and validator that won't share JSON with a server.
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of CSharpier or a related project?
README
[CSharpier](./banner.svg)
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.
Quick Start
Install CSharpier globally using the following command.
dotnet tool install csharpier -g
Then format the contents of a directory and its children with the following command.
dotnet csharpier .
CSharpier can also format on save in your editor or as a pre-commit hook. Then you can ensure code was formatted with a CI/CD tool.
Before
public class ClassName {
public void CallMethod() {
this.LongUglyMethod("1234567890", "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
}
}
After
public class ClassName
{
public void CallMethod()
{
this.LongUglyMethod(
"1234567890",
"abcdefghijklmnopqrstuvwxyz",
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
);
}
}
Contributing
See [Development Readme](CONTRIBUTING.md)