LPRun7.exe CMD directive bug
When running via LPrun.exe the CMD pre-processor command doesn't work anymore.
Example program TestCmd.linq:
<Query Kind="Program" />
void Main()
{
#if CMD
    "cmd".Dump();
#else
    "ide".Dump();
#endif
}
Run via command line:
"C:\Program Files\LINQPad7\LPRun7.exe" TestCmd.linq
Outputs:
ide
Comments
- 
            
Thanks - this should be fixed in the latest beta:
https://www.linqpad.net/linqpad7.aspx#beta - 
            
Is it possible to use this in VB program mode with lprun? It doesn't seem to set the CMD symbol like it does for C# Program.
 
