Skip to content

[NETSDKE2E][Blue]The debug result does not wrap lines when pressing F5. #2699

@yinjiehe01

Description

@yinjiehe01

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();
        }
    }
}
  1. F1-> Debug: Select and start Debugging -> C#

Expected
The debug result can wrap line like in Windows.

Image

Actual
The debug result does not wrap line

Image

Note
It works well when press Ctrl+F5

Image

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions