Reputation: 1
New to VS 2022 and programming in general. I am looking at the Debug toolbar while coding F#, and it seems to be missing 3 buttons: "Step Back Into", "Step Back Over", "Step Back Out".
They are selected under the 'Customize' menu as per screenshot:
Here's the Debug Toolbar at the top:
Upvotes: 0
Views: 818
Reputation: 2297
We can see from this link:
The reverse execution buttons are only available for Time Travel Debugging (TTD). It’s currently a preview feature in VS Enterprise for Azure VMs.
You can read more about TTD here.
Upvotes: 1
Reputation: 9055
A few things here... I was able to get those buttons to display in my toolbar, but they are never active. I'm unsure what condition needs to be satisfied to enable them.
Try this first:
It should look something like this:
However, when I tried this method, the buttons were already listed in this dialog, but the but the checkbox control for them was disabled. They were checked, but the buttons were not present in the toolbar. I clicked "Customize..." towards the bottom of this list, which brought me to a menu similar to your first screenshot. I clicked "Add Command...", selected "Debug" on the left side of the categories to choose from, and then selected the "Step Back Into", "Step Back Over", and "Step Back Out" buttons.
Again though, these debug options were never active for me, so I'm unsure how they are used. I attempted debugging a few things to see if they would activate, but nothing I tried worked.
Upvotes: 1