You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2021. It is now read-only.
Affects VS Mac 7.4.1, 7.5 (d15-7) and 7.6.0.296 (master)
To repro:
Create a new C# console project.
Change the Program.cs so it is missing a using statement for System, but has one other using statement.
// Comments.
using System.IO;
namespace Test
{
class MainClass
{
public static void Main (string[] args)
{
File.Exists (args[0]);
Console.WriteLine ("Hello World!");
}
}
}
Right click Console and select Quick Fix - using System;
Expected result:
using System; added with the same \n line ending as other lines.
Affects VS Mac 7.4.1, 7.5 (d15-7) and 7.6.0.296 (master)
To repro:
Expected result:
using System;added with the same \n line ending as other lines.Actual result:
using System;added with \r\n