-
Re: LinqPad 5 Nuget - Unable to connect to the remote server
Not exactly the same, but I started getting '404 Not Found' errors when attempting to update any Nuget package. This turned out to be my own fault as I had added a second Package source whi…1 · -
Re: Bitwise operator query in LINQPad?
Change where p.Party_type | 2 == 2 to where (p.Party_type | 2) == 21 · -
How to debug non-LinqPad code?
With older versions of LinqPad, you could attach the Visual studio debugger and step through, not just your LinqPad script but also through your code in other dlls. With the new integrated debugger, …1 · -
Re: Reference not updating
Could you have an older version referenced in 'My Extensions' or located in your Plugins folder?1 · -
Re: Using a license protected library
You could try change from C# Statements to C# Program in the style like void Main() { Licensing.AddSerialNumber("..."); MyCode(); } private void MyCode() { .... } This should mean the licen…1 ·