-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Milestone
Description
Version Used: Visual Studio 2015 Update 3
Steps to Reproduce:
- Paste the following code:
void Test()
{
if (1 == 1)
Test();
else
if (2 == 2)
Test();
else
Test();
}
Expected Behavior: autoformatting like in previous versions of Visual Studio (proper indentation of nested if-else blocks).
Actual Behavior: Visual Studio 2015 currently formats it like this:
void Test()
{
if (1 == 1)
Test();
else
if (2 == 2)
Test();
else
Test();
}
DustinCampbell and SOHODeveloper