-
Re: Process file not found?
What's the value of w? Note that if it's not an executable, you must invoke it like this in .NET Core: Process.Start (new ProcessStartInfo (target) { UseShellExecute = true }) (View Post) -
Re: Why does LINQPad 7 include its own version of System.Windows.Forms.DataVisualization?
That NuGet package is a prerelease for .NET 3.0 and hasn't been updated since February 2020. I seem to remember that it contains a bug that's sometimes a blocking issue - this is why LINQPad uses a f… (View Post) -
Re: LINQPad 7, confused about licensing: is my license inadequate to try the AI assistant?
There's info about this feature, with screenshot, in the release notes: https://www.linqpad.net/LINQPad7.aspx There's also a YouTube video here: https://www.youtube.com/watch?v=2fplJvWRIhA V8 is like… (View Post) -
Re: How lprun auto using latest version of local nuget?
The -nunuget switch tells LPRun to update NuGet libraries to latest. See https://www.linqpad.net/lprun.aspx (View Post) -
Re: WebApplication usage in LinqPad
Press Ctrl+F1 to bring up the LINQPad tutorial and reference, and search for ASP.NET. This will give you a couple of examples of how to use ASP.NET minimal API with LINQPad. (View Post)