JetBrains Rider 2019.3 Help

Debug window

View | Tool Windows | Debug
Alt+5

This tool window becomes available when you start debugging.

It displays the output generated by the debugging session for your application. If you are debugging multiple applications, the output for each application is displayed in a separate tab named after the corresponding run/debug configuration.

For each application, there are the following nested tabs:

  • Console: displays system information and error messages, and the console input and output of your application.

  • Debugger: this tab is divided into the following areas:

  • Elements: appears if you are using Chrome browser for debugging.

  • Debug Output: shows messages sent by your application to the debug output, for example with the Debug.WriteLine() method.

  • Parallel Stacks: shows threads and their stack frames on the diagram.

Each area has a context menu that allows you to configure its behavior and navigate between tabs.

Each of the tabs and areas can be hidden/restored, or moved to a location of your choice.

JetBrains Rider: Debug window

Debug toolbar

Item

Tooltip and Shortcut

Description

Restart

Rerun
Ctrl+Shift+F5

Click this button to stop the current application and run it again.

Resume

Resume Program
F5

When an application is paused, click this button to resume program execution.

Pause

Pause Program
Ctrl+Pause

Click this button to pause program execution.

Stop

Stop
Shift+F5

Click this button to terminate the current process.

View breakpoints

View Breakpoints
Ctrl+Alt+B

Click this button to open the Breakpoints dialog where you can configure breakpoints behavior.

Mute breakpoints

Mute Breakpoints

Use this button to toggle breakpoints status.

You can temporarily mute all the breakpoints in a project to execute the program without stopping at breakpoints.

restore layout

Restore Layout

Click this button to abandon changes to the current layout and return to the default state.

Show options menu

Show Options Menu

Click this button to open the menu with the following options available:

  • Show Values Inline: select this option to enable the Inline Debugging feature that allows viewing the values of variables right next to their usage in the editor.

  • Sort Values Alphabetically: select this option to sort the values in the Variables pane in the alphabetical order.

  • Unmute Breakpoints on Session Finish: select this option to re-enable all disabled breakpoints after the debugging session has been finished.

icons general pin tab

Pin Tab

Click this button to pin or unpin the current tab. You may need to pin a tab to prevent it from closing automatically when the maximum number of tabs is reached in this window.

Stepping toolbar

Item

Tooltip and Shortcut

Description

Show Execution Point

Show Execution Point
Alt+NumPad *

Click this button to highlight the current execution point in the editor and show the corresponding stack frame in the Frames pane.

Skip to Cursor

Skip to Cursor
Ctrl+Shift+F10

Instead of running the program up to the target statement, you may want to skip a part of code without actually executing it (for example, to avoid a known bug or not to repeat some routine). You can do this with the Skip to Cursor Skip to Cursor command Ctrl+Shift+F10 that is also available in the Run menu and in the Debug Tool Window.

You can also skip a part of the porgram by dragging the execution pointer Execution pointer with your mouse and dropping it to the target line:

JetBrains Rider: Dragging the execution pointer

If Show floating debugger actions is enabled on the Build, Execution, Deployment | Debugger page of JetBrains Rider settings Ctrl+Alt+S, you can hover the mouse over the target statement and then pick the corresponding action:

JetBrains Rider debugger: Setting the next statement with the hover action

Remember the following when you jump to another statement:

  • Statements between the old and the new execution points are not executed.

  • You can jump back, that is to a statement that was already executed. In this case the already executed statements are not undone.

  • It is impossible to set the next statement in another function.

Step over

Step Over
F10

Click this button to execute the program until the next line in the current method or file, skipping the methods referenced at the current execution point (if any). If the current line is the last one in the method, execution steps to the line executed right after this method.

Force step over

Force Step Over
Shift+Alt+F8

Click this button to have the debugger step over the method even if this method has breakpoints inside.

Step into

Step Into
F11

Click this button to have the debugger step into the method called at the current execution point.

The debugger will set the execution pointer at the first statement of the first function called from the current line. If no function is called, then the debugger will step to the next statement.

By default, JetBrains Rider enables external-source debugging, which means that when you step into the library code it will be automatically decompiled and the debugger will move the execution point there.
If you want the debugger to ignore the library code, you can disable external-source debugging — clear Enable external source debug on the Build, Execution, Deployment | Debugger page of JetBrains Rider settings Ctrl+Alt+S.

Smart step into

Smart Step Into
Shift+F7

If the current line contains several nested calls, JetBrains Rider lets you choose a call to step into. Consider the following code line:

Console.WriteLine(Foo(Bar("input") + Baz("input")));
The line contains several calls and if you use Step Into, the debugger will first step into the implementation of Bar(), then into the implementation of Baz() and so on.

If you want to choose which of the calls should be stepped into, for example, Bar(), you can use Smart Step Into Smart Step Into Shift+F7:

JetBrains Rider: Smart step into - stepping into selected call

When you choose the function to step into, the debugger will set the execution pointer at the first statement of the selected function.
The selector also shows you which of the calls were already executed and allows you to execute these calls again.

Step out

Step Out
Shift+F11

Click this button to have the debugger step out of the current method, to the line executed right after it.

Run to cursor

Run to Cursor
Ctrl+F10

Click this button to resume program execution and pause until the execution point reaches the line at the current cursor location in the editor. No breakpoint is required. Actually, there is a temporary breakpoint set for the current line at the caret, which is removed once program execution is paused. Thus, if the caret is positioned at the line which has already been executed, the program will be just resumed for further execution, because there is no way to roll back to previous breakpoints. This action is especially useful when you have stepped deep into the methods sequence and need to step out of several methods at once.

If there are breakpoints set for the lines that should be executed before bringing you to the specified line, the debugger will pause at the first encountered breakpoint.

If Show floating debugger actions is enabled on the Build, Execution, Deployment | Debugger page of JetBrains Rider settings Ctrl+Alt+S, you can hover the mouse over the target statement and then pick the corresponding action:

JetBrains Rider debugger: Run to cursor with the hover action

If line numbers are displayed in the editor, and Click line number to perform run to cursor is enabled on the Build, Execution, Deployment | Debugger page of JetBrains Rider settings Ctrl+Alt+S, you can run to this line by clicking its line number.

JetBrains Rider debugger: Run to cursor using the line number
Force run to cursor

Run to Cursor Non-Stop
Ctrl+Alt+F9

If there are breakpoints between the current execution point and the target statement, you can force the debugger to skip these breakpoints with the Run to Cursor Non-Stop Run to Cursor Non-Stop command Ctrl+Alt+F9.

Evaluate expression

Evaluate Expression
Shift+F9

Click this button to evaluate expressions.

the Add method to skip list button

Add method to skip list

Click this button to add the method you have stepped into to a skip list.

You can configure this list on the Languages & Frameworks | PHP | Debug | Step Filters page of the Settings/Preferences dialog Ctrl+Alt+S.

Moving tabs and areas

If you are unhappy with the default layout of the Debug tool window, you can always move the tabs and areas. To do that, just drag a tab or an area to the desired location. The possible target gets highlighted.

Drop the tab or area in the highlighted location.

To restore the default layout of tabs and area, click Restore layout in the Debug toolbar.

Last modified: 16 April 2020