Apply dotnet-format on save in Visual Studio?

4.6k Views Asked by At

I just discovered dotnet-format, but as far as I understand it's a command line tool that has to be called manually. How can I apply dotnet-format on saving a file in Visual Studio 2019? (not Visual Studio Code!)

3

There are 3 best solutions below

1
On

Although this is not what the question was about, I have dotnet-format setup to run as a pre-commit hook.

#!/bin/sh
dotnet-format
exit 0

For the on-save formatting and other gimmicks, I use CodeMaid. https://marketplace.visualstudio.com/items?itemName=SteveCadwallader.CodeMaid

0
On

You can configure your project to run this command automatically before build. But it will consume build time

<Project>
    <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
  <Exec Command="dotnet format --severity warn --verbosity diagnostic" />
</Target>
0
On

You can add this to your csproj

<PropertyGroup>
  <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>

This setting enables code style enforcement on build. Any code style violations will be reported as build warnings or errors according to the .editorconfig file.