Reputation: 865
While debugging in Visual Studio 2019, I received the following message:
Your step-into request resulted in an automatic step-over of a property or operator. This behavior can be overridden in the context menu for the line being executed by choosing 'Step Into Specific' or by unchecking the option 'Step over properties and operators'. Do you want continue being notified when an automatic step-over happens?
I answered "No" to the dialog, but now I've changed my mind. How do I re-enable this notification?
Upvotes: 0
Views: 2184
Reputation: 23868
but now I've changed my mind. How do I re-enable this notification?
l think you could meet this message by resetting settings of VS and project.
You can try these steps:
1) First, reset VS settings by Tools-->Import and Export settings...-->Reset all settings
.
2) Then, delete the .vs hidden folder under the solution path which stores project settings, options.
"WARNING: Use this at your own risk. It WILL reset your settings and do things like reset your Toolbox thus getting rid of any custom tabs, code pieces, etc.. you have put in there."
Upvotes: 1