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
VS Code version: 1.10.2
C# Extension version: v1.8.0
Steps to reproduce
Create an app:
dotnet new mvc -o webtest
cd webtest
dotnet restore && dotnet build
Set a breakpoint at the line which contains text ‘ ViewData["Title"]="Home Page"; ’ in Index.cshtml.
Press F5 to start debugging
Press Continue
Expected behavior
The call stack frame seems like incorrectly.
Actual behavior
When the breakpoint is hit, the call stack window as following:
After press Continue, the call stack window as following:
After about 30 seconds, the call stack window as following:
Is this expect? Could you please help me confirm it?
The text was updated successfully, but these errors were encountered:
@GraceDong to make sure I understand, the part you are asking about is that a bunch of threads are listed as 'Paused on breakpoint' when in fact they are NOT paused on a breakpoint. Is that correct?
@GraceDong the fact that a thread is listed as 'paused' is a bug. It is somewhat of a VS Code bug, but I will fix it on our side.
The fact that threads go away is just how the ASP.NET runtime works. Its expected.
gregg-miskelly
changed the title
Debugger: The call stack frame seems like incorrectly in web application
Debugger will show threads as 'Paused' when they are running
Mar 14, 2017
Environment data
dotnet --info
output:VS Code version: 1.10.2
C# Extension version: v1.8.0
Steps to reproduce
Expected behavior
The call stack frame seems like incorrectly.
Actual behavior
When the breakpoint is hit, the call stack window as following:
After press Continue, the call stack window as following:
After about 30 seconds, the call stack window as following:
Is this expect? Could you please help me confirm it?
The text was updated successfully, but these errors were encountered: