debugger-libs icon indicating copy to clipboard operation
debugger-libs copied to clipboard

Debugger libraries

Results 20 debugger-libs issues
Sort by recently updated
recently updated
newest added

When writing Visual Studio extensions for Windows, that use the Mono stack, currently customers have to install the MAUI workload (a few GB download) for the extensions to work, due...

@thaystg et al... I've just updated our debugger-libs submodule to point to the the latest commit, `35ab1bd2c237c155296749fa0a680ce5d4f2e13d`, on `main` When Github Action CI tries to build the required *.csprojs I...

In the some scenarios after a `Backtrace.GetFrame(X)` the debugger rise this exception. Maybe it is normal, but the error is seems strange for me I test it on 5d69343778b03f95f69e43e9b933e2ef5e60fdd2 -...

Hi! I've discovered that the 2.56 version of the protocol (the newest version for now) has a degradation. When we start an evaluation from Immediate window we expect that Debugger.Break()...

Removing usage of AsyncCallback and AsyncResult, this is not available in netstandard. Changing projects to use new csproj style.

do not merge

This is needed to resolve ambiguous expressions such as those that could be a type -or- a variable name. Partial fix for https://devdiv.visualstudio.com/DevDiv/_workitems/edit/939728/

This PR fixes the issues with SetValue: SetValue now throws special exception (ValueModificationException) to be shown to user in frienly way. Before in the most of cases it failed silently...

This allows to disable or enable async evaluation in TimedEvaluator.

This refactoring originally was started to fix multiple deadlocks in AsyncOperationManager. After some investigation I've decided to rewrite all of this code to .net Task API to avoid syncronization issues...

I am trying to write an extension in VS Code that debugs Unity projects. For this I am using `StackFrame.GetExpressionValue(string expression, EvaluationOptions options)`. The result that I getting back is...