Cleaning up compiler warnings
If you have a legacy codebase you most likely have build time warnings. If you want to fix them, you can start with dotnet format. It will take your editorconfig and apply the rules to the code.
Besides, there is an interesting dotnet tool called Roslynator. It has a fix command which automatically fixes warnings and errors, based on your preferences (stored in .editorconfig). Furthermore, it can remove any unused code.
- Previous: GIT Add
- Next: Yarn Berry and npmScopes