Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 2.92 KB

CHANGELOG.md

File metadata and controls

50 lines (30 loc) · 2.92 KB

0.16.3

  • Added support for configuring handled and unhandled exceptions in the Breakpoints window.

0.16.2

  • Don't use MONO_ENV_OPTIONS to pass debug options by default, it causes issues when starting subprocesses: Issue #68

0.16.1

  • Support debugging VB source files (.vb)
  • Raise minimum required VSCode version to 1.32

0.16.0

  • Update mono debugger-libs to latest version, resolves lots of bugs in the debugger: PR #64
  • Use MONO_ENV_OPTIONS environment variable to pass debug options to mono, this allows custom executables that embed mono to be debugged: PR #66

0.15.7

  • Thanks to PR from Jonathan Dick the file extension .cake has been added to the list of supported extensions. This allows to launch Cake.exe with the mono soft debugger, and subsequently attach to it with this extension to debug cake scripts.

0.15.6

  • no longer creates an initial launch configuration with an obsolete externalConsole property.
  • fixed an issue with source-less stack frames rendered centered in the CALL STACK view.
  • Thanks to PR from VysotskiVadim it is now possible to debug Haxe (that got translated to C#).
  • Thanks to PR from VysotskiVadim the project now has a F# regression test.

0.15.5

0.15.4

  • Mono-debug now uses the terminal service provided by VS Code. You can now use the launch config attribute console for selecting one of internalConsole, integratedTerminal, externalTerminal. The 'integratedTerminal' and 'externalTerminal' can be further configured through workspace or user settings.
  • Added support for configuring handled and unhandled exceptions. Use the "Debug: Configure Exceptions" command.

0.15.3

  • Combined 'argument' scope with 'locals' scope in variables view
  • Enabled support for Windows by removing dependency on SDB, thanks for the PR from t-h-e - Microsoft/vscode-mono-debug#15

0.14.0

0.13.0

  • Enable support for showing variables values in source while stepping