Steps to reproduce:
- Configure the "Editor\C#\Formatting\Blank Lines\Region\Blank lines around" option value.
- Format the following code:
C##region License Header
//-----------------------------------------------------------------------
// <copyright file="ConsoleApp2\Program.cs" company="">
// Author:
// Copyright (c) . All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
#endregion
using System;
namespace ConsoleApp2
{
internal class Program
{
private static void Main(string[] args)
{
}
}
}