From: Igor Kulaychuk Date: Mon, 17 Jul 2017 03:12:09 +0000 (+0300) Subject: Add dummy var-show-attributes command X-Git-Tag: submit/tizen/20180620.071641~176 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ce2a609a3c9517b1b84742b501636b7ac721c9f1;p=sdk%2Ftools%2Fnetcoredbg.git Add dummy var-show-attributes command --- 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);