Debugging C# Code
Posted: Mon Sep 16, 2013 9:44 pm
I followed the instructions in this thread, but had no success.
The steps in that link had it attempting to compile the current code file, so with looking at the macro tags, I was able to correct it.
My current settings:
Expands to empty string for all four variations on the macro tags.
I've tried to change the way that I run Zeus also in order to run the vars batch file first, even though all of the other Macro Tags are working correctly just in case there was something there, but it still doesn't work.
What could I be doing incorrectly?
The steps in that link had it attempting to compile the current code file, so with looking at the macro tags, I was able to correct it.
My current settings:
- Menu Text: MS Debugger '$PB.exe'
Program Name: "$MsDbgClrPath$MsDbgClr"
Arguments: /mditabs $PDD\bin\debug\$PB.exe
Work Directory: $PDD\bin\debug\
Code: Select all
function key_macro()
local message_text = ""
-- Microsoft CLR Debugger Path
message_text = message_text .. "\nMicrosoft CLR Debugger Path" .. " = " .. macro_tag("$MsDbgClrPath")
message_text = message_text .. "\nMicrosoft CLR Debugger Path" .. " = " .. macro_tag("$MSCDP")
-- Microsoft CLR Debugger
message_text = message_text .. "\nMicrosoft CLR Debugger" .. " = " .. macro_tag("$MsDbgClr")
message_text = message_text .. "\nMicrosoft CLR Debugger" .. " = " .. macro_tag("$MSCD")
message_box(1, message_text, "Microsoft Visual Studio Macro Tags")
end
key_macro() -- run the macro
I've tried to change the way that I run Zeus also in order to run the vars batch file first, even though all of the other Macro Tags are working correctly just in case there was something there, but it still doesn't work.
What could I be doing incorrectly?