-
Re: Option to dump with a lambda to dump a specific property?
Have you thought about adding that method to add to "My Extensions"?public static T Dump<T, U> (this T input, Func<T, U> toDump) { toDump (input).Dump(); return input; }1 · -
Re: LINQPad(AnyCPU) not respect gcAllowVeryLargeObjects in app.config runtime section
It's possible that you might need to add this to the LINQPad host process's config as well (LINQPad.exe.config).1 · -
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 ·