fix: corrected the dotnet format path

This commit is contained in:
D. Moonfire 2024-04-18 21:50:54 -05:00
parent 5f2895af1f
commit a176d8d954

View file

@ -34,12 +34,14 @@ let
}
// pkgs.lib.attrsets.optionalAttrs dotnet.format {
dotnet-format-style = {
command = "dotnet format style --include";
command = "dotnet";
options = "format style --include";
includes = [ "*.cs" ];
};
dotnet-format-analyzers = {
command = "dotnet format analyzers --include";
command = "dotnet";
options = "format analyzers --include";
includes = [ "*.cs" ];
};
}