From ce2a609a3c9517b1b84742b501636b7ac721c9f1 Mon Sep 17 00:00:00 2001 From: Igor Kulaychuk Date: Mon, 17 Jul 2017 06:12:09 +0300 Subject: [PATCH] Add dummy var-show-attributes command --- src/debug/netcoredbg/commands.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/debug/netcoredbg/commands.cpp b/src/debug/netcoredbg/commands.cpp index 606a7bd..9545454 100644 --- a/src/debug/netcoredbg/commands.cpp +++ b/src/debug/netcoredbg/commands.cpp @@ -401,6 +401,10 @@ HRESULT Debugger::HandleCommand(std::string command, return S_OK; }}, + { "var-show-attributes", [](ICorDebugProcess *, const std::vector &args, std::string &output) -> HRESULT { + output = "status=\"noneditable\""; + return S_OK; + }}, }; auto command_it = commands.find(command); -- 2.7.4