-
Using Playwright in Linqpad
To use PlayWright in dotnet it is required to install required drivers either via playwright.ps1 script that should be copied to output folder or by running Microsoft.Playwright.Program.Main method. … (View Post) -
Re: Blazor server webapp?
One of the potential problems probably will be the fact that razor compiler uses source generators which are not supported by LINQPad, but this can be disabled using csproj flag (https://andrewlock.n… (View Post) -
LINQPad support for .NET 7.0 Preview 1?
https://devblogs.microsoft.com/dotnet/announcing-net-7-preview-1/ .NET 7 Prev 1 has been released, when can we expect support of it in beta channel? (View Post) -
Re: Same mini asp.net core code in LINQPad unable to get responsed but good in Visual Studio
It works when You manually add current assembly for ASP.NET to scan var builder = WebApplication.CreateBuilder();builder.Services.AddControllers().AddApplicationPart(typeof(HomeController).Assembly);… (View Post)