REGRESSION INFO
None
INSTALL STEP
1.Install SDK 10.0.102 on Linux or Mac.
2.Install latest VS Code and C# (2.112.45) C#DK (1.92.5) pre-release extension.
REPRO STEPS
1.Create a console project by clicking the Create .NET Project button.
2.Edit the code in the Program.cs file
class Program
{
static async void Render()
{
Console.Write('.');
}
static void Main()
{
while (true)
{
Thread.Sleep(100);
Render();
}
}
}
- F1-> Debug: Select and start Debugging -> C#
Expected
The debug result can wrap line like in Windows.
Actual
The debug result does not wrap line
Note
It works well when press Ctrl+F5

REGRESSION INFO
None
INSTALL STEP
1.Install SDK 10.0.102 on Linux or Mac.
2.Install latest VS Code and C# (2.112.45) C#DK (1.92.5) pre-release extension.
REPRO STEPS
1.Create a console project by clicking the Create .NET Project button.
2.Edit the code in the Program.cs file
Expected
The debug result can wrap line like in Windows.
Actual
The debug result does not wrap line
Note
It works well when press Ctrl+F5