hallidev
hallidev
I'm working in a fairly large codebase that's using this dreaded pattern: ``` string result = response.Content.ReadAsStringAsync().Result; ``` As a result, line 67 in ```InOrderAsyncQueueDispatcher.cs``` reliably deadlocks : ``` _eventSlim.Wait(_cancellationTokenSource.Token);...
### Describe the bug When developing locally (Blazor WASM), I have the following files in /wwwroot: ``` appsettings.json appsettings.Development.json appsettings.LocalDevelopment.json ``` My launchSettings.json specifies an ASPNETCORE_ENVIRONMENT of "LocalDevelopment". When running...