Changed the default .NET formatter (MfGames Project Setup Flake)
When we first introduced the .NET formatter for C# files, we picked csharpier[1] because it was a lot faster than dotnet format[2]. Since then, the opinionated formatting that came with `csharpier` was getting in the way of our style and along with conflcits with ReSharper[3].
The latest is breaking change that switches the default formatter out but retains the `csharpier` formatting for those who want it. To put it back:
config = inputs.mfgames-project-setup.lib.mkConfig {
inherit system pkgs;
dotnet.enable = true;
dotnet.csharpier = true;
dotnet.format = false; # Defaults to false, so don't need it.
};
To use `dotnet format`, the setup would be:
config = inputs.mfgames-project-setup.lib.mkConfig {
inherit system pkgs;
dotnet.enable = true;
dotnet.format = true;
};
Metadata
Project:
- Project ID: 019530bd-5065-731f-925b-3961eb7aa613</li>
Categories:
Footer
Below are various useful links within this site and to related sites (not all have been converted over to Gemini).