Is there an XML formatter available as an add-in for Visual Studio 2010? I am currently using Notepad++ and using the XML Tools plug-in to get the formatting sorted.
Is there an add-in for VS2010, which will do something similar?
Is there an XML formatter available as an add-in for Visual Studio 2010? I am currently using Notepad++ and using the XML Tools plug-in to get the formatting sorted.
Is there an add-in for VS2010, which will do something similar?
Simply press Ctrl+E,D
or use the following command from the menu:
Edit -> Advanced -> Format Document
In my version of VS 2010 it's Ctrl+K,D
or
Edit -> Format Document
Personally these days I couldn't survive without
Found in standard VS options :
Tools > Options > XML > Formatting
Which also works for straight XML, adding the ability to create collapsible regions similar to the following (in c#) :
#region
public void SomeMethod()
{
//...
}
#endregion
© 2022 - 2024 — McMap. All rights reserved.