-
Re: Running Linqpad on Ubuntu?
With .NET Core, a cross-platform version is possible or even likely in the future. However, Microsoft has no immediate plans to make Windows Forms and WPF x-platform, so we still have that hurdle to …1 · -
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 ·