January 10th, 2022
mind blownheart4 reactions

Bringing Code Cleanup on Save To Visual Studio 2022 17.1 Preview 2

Senior Product Manager

Starting in Visual Studio 2022 17.1 Preview 2, developers can now perform Code Cleanup automatically when a file is being saved! Code Cleanup automatically on Save is a new feature integrated into Visual Studio 2022 that can clean up your code file to make sure it is formatted correctly and that your coding style preferences are applied. Some customizable preferences include: format document, sort usings, remove unnecessary usings, and more. This feature can help minimize stylistic violations within PRs and more to allow developers to spend less time fixing code not meeting specific standards and more time doing what they do best. To give it code cleanup on save a try, download Visual Studio 2022 Preview:

Moving image demonstrating code cleanup on save

How to enable Code Cleanup on Save

First, navigate to Analyze > Code Cleanup > Configure Code Cleanup to personalize desirable customizations to your code cleanup profile(s).

Screenshot for configuring code cleanup profiles

Next, navigate to Tools > Options > Text Editor > Code Cleanup. Add a check in the “Run Code Cleanup profile on Save”. Be sure to select the appropriate profile you want to execute automatically whenever you save!

Screenshot of dialogue to enable code cleanup on save

 

Try it out and share your feedback!

We would love to get your feedback on Code Cleanup on Save so please give it a try and let us know what you think! You can share any feedback via Developer Community to help us make Visual Studio better for you!

 

Author

Denizhan Yigitbas
Senior Product Manager

Denizhan is a senior product manager who has spent his last 3 years focusing on improving developer productivity across a broad landscape of Microsoft developer products. Denizhan has had the opportunity to work on improving Visual Studio IDE, launching the C# Dev Kit VS Code extension, and working on early incubation technology for GitHub Copilot.

22 comments

Discussion is closed. Login to edit/delete existing comments.

Sort by :
  • Burçin Şahin

    Hi, I do not know if it is asked before. Is there a way to add a 3rd or 4th profile? I have been already using these profiles, now I need to add new profiles to use in specific cases. Thx in advance.

  • Conor Mendenhall

    I’m not seeing Code Cleanup under my Text Editor settings in Visual Studio 2022 version 16.11.10
    I also have Resharper installed. Could that be conflicting with this somehow?
    I am able to run code cleanup, but would love to set it to automatically occur on save.

    • Aleksandar Dimitrievski

      Update your VisualStudio version to 17.1, after that Code Cleanup will be visible.

    • Conor Mendenhall

      I just checked, and apparently Resharper has its own cleanup on save options.

  • Giovanni Bassi

    That is great, I used the “Format document on Save” extension to do this.
    Will there be a way to save without formatting? This is something the developer added to that extension, and that is also available in vscode.

  • Evans, Paul (Secure Solutions & Services)

    Is there a risk of this breaking stuff?

    I note the demo removed "unusedVariable" - what if that wasn't "unusedVariable", but "soonToBeUsedVariable"?

    Does this also do some of the automagic fixes that Ctrl+. comes up with? I've had some strange things from there where the fix has removed half of the line to meet some "Hey! This is a good idea!" rule, but has just messed the line up.
    Related, does it do the automatic "You changed X to Y in half the document - do you want to do it here?" suggestions? Sometimes useful, sometimes not - if I copy the...

    Read more