-
Re: Please don't prevent installing native package in LINQPad
From v5.34, you can now reference NuGet packages that contain only native libraries, providing that the native libraries are located in a folder whose name follows a standard convention (i.e., contai…2 · -
Re: Linqpad Intellisense very slow
I've just uploaded a new beta (5.33.10) with an embedded profiler. Go to Help | About and click "Start internal profiling". Then create a query, type "var" or whatever causes it t…1 · -
Re: LINQPad.Controls pause for input
How about this:void Main() { var radioOne = new RadioButton ("group1", "One").Dump(); var radioTwo = new RadioButton ("group1", "Two").Dump(); var radioThree =…3 · -
Re: my extensions 101
Simple example:public static class MyExtensions { public static bool Contains (this string s, string value, bool ignoreCase) => s.IndexOf (value, ignoreCase ? StringComparison.OrdinalIgnoreCase : …3 · -
Re: Error adding xUnit.net nuget package
Update: try the latest beta. I've added code to identify and remove duplicate attributes from the NuGet package file. It should at least work for the xunit.abstractions package, or packages with simi…2 ·
