-
Re: Using WebDriver in LINQPad is pain
LINQPad uses Roslyn for compiling queries, not MSBuild. There is no concept of a "project" in LINQPad, and it has no way to parse the .targets file. FWIW, this should be fixed in .NET Core …2 · -
Re: Remove ILSpy from Linqpad install?
You won't be able to easily change LINQPad.exe because you'll lose the signature and this will prevent drivers, etc from working. Can I ask why decompilers cannot be present in your use case? ILSpy a…1 · -
Re: Main behaves differently between LINQPad & LPRun
That behaviour is intentional. It's because there are two ways to call another script: - LPRun - Util.Run With Util.Run, you can pass and return richly-typed arguments, whereas with LPRun, you are re…1 · -
Re: Help! LPRun.exe exceptions not setting %errorlevel%
This was fixed 3 years ago insofar as setting the %errorlevel% to 1 when the query throws an unhandled exception. In the 5.35.1 beta, I've also allowed you to return a non-zero value by returning an …1 · -
Re: multithreading (unexpected?) behavior
Or alternatively, add the following code anywhere in your script: Util.NewProcess = true;1 ·
