Home
Options

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

Sign In or Register to comment.