-
Re: Support C# 7.2
You will need to reference the System.Memory NuGet package.1 · -
Re: LINQPad's preview version of roslyn does not support nullable reference types
I've reverted the preview assemblies to the previous state, so nullable reference types will work again. To support 2.10 will require a new LINQPad build. I'll try and upload something in the next da…1 · -
Re: LINQPad using .NET Core 3.0(Preview) ?
Yes, a lot of work has been done already and a release is planned for Q1 2019.2 · -
Re: Connection InfoMessage Event Handler
You should be able to do this within the query:((SqlConnection)Connection).InfoMessage += (sender, args) => args.Message.Dump(); or:((SqlConnection)Connection).InfoMessage += (sender, args) => …1 · -
Re: LINQPad is executed from ProgramData after upgrade
LINQPad tries to copy LINQPad.exe from that location back to the original location. If it fails 3 times, it will give up. The reason for it failing might be related to user permissions. The logic has…1 ·