Explains elmah.io's server-side JavaScript source map support: upload minified bundle source maps privately via the API, Swagger UI, or Azure DevOps, GitHub Actions, or Octopus Deploy integrations, so elmah.io de-minifies stack traces automatically without publishing the map to your webserver. ...
Introduces 3 new free elmah.io tools, bringing the total to 9: an Appsettings.json Transform Tester for previewing how appsettings.json merges with appsettings.production.json, a Base64 Image Encoder generating embed code for HTML, CSS, XML, and JSON, and an MD5 Encoder outputting ready-to-paste C# ...
Compares four ways to update NuGet packages across multiple projects and solutions: Visual Studio's Package Manager UI, hand-editing the PackageReference in .csproj, running dotnet add package Spectre.Console --version 0.41.0 from the command line, and third-party bulk-update tools like NuKeeper. ...
Builds a fire-and-forget queue in ASP.NET Core: a BackgroundWorkerQueue wrapping ConcurrentQueue and SemaphoreSlim, plus a LongRunningService extending BackgroundService to dequeue and run items, turning a simulated 10-second blocking call into an instant page load, noting Hangfire and Quartz.NET. ...
Diagnoses System.FormatException at ASP.NET Core startup, usually a wrapped JsonReaderException from malformed JSON: a checklist to validate appsettings.json, appsettings.*.json, secrets.json, global.json, launchSettings.json, ensuring an empty config file has {}, plus the Appsettings.json Validator ...
Fixes a System.OutOfMemoryException in ASP.NET Core caused by building a 100,000,000-string List in memory before returning it, by refactoring the IEnumerable<string> endpoint to use C#'s yield return keyword, which streams each value to the client as a 200 response instead of buffering everything. ...
Sets up elmah.io's embedded source code feature using the Elmah.Io.Client.Extensions.SourceCode package, comparing WithSourceCodeFromFileSystem for local runs against WithSourceCodeFromPdb plus EmbedAllSources for deployed apps. ...
Troubleshoots the ASP.NET Core "White Screen of Death" startup failure with concrete fixes: temporarily forcing UseDeveloperExceptionPage in production, then wiring ConfigureLogging with AddEventLog or an elmah.io sink to surface the real error. ...
Implements Slack's OAuth v2 flow in an ASP.NET Core MVC app: an AuthorizeSlack action redirecting with the incoming-webhook scope, a SlackCallback action exchanging the code via oauth.v2.access, and storing the returned webhook URL to post messages. ...