-
Re: Add updated experimental Roslyn assemblies to support C# 8.0
Done Go to Edit | Preferences | Query and click "Update to 2.9.0.1" Note there is a bug where LINQPad will claim to be on 2.9.0.0 even after you've updated. This is because Microsoft didn't…1 · -
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 ·