#AspNet

Kevin Griffin - Microsoft MVP1kevgriff@bbiz.io
2026-03-05

Logging without structure = flying blind in production. Serilog is essential for #dotnet apps. Learn structured logging best practices for #aspnet Core with this comprehensive guide.

codewithmukesh.com/blog/struct

#csharp #observability #logging

Kevin Griffin - Microsoft MVP1kevgriff@bbiz.io
2026-03-05

🚨 Silent security bugs are the worst kind. Discover how a quirk in legacy #aspnet MVC silently dropped a critical security filter—and what to do about it.

bartwullems.blogspot.com/2026/

#dotnet #security #aspnetcore

Swimburger :dotnet:swimburger@dotnet.social
2026-03-04

I gave my Blazor based ncrontab testing tool a facelift
ncrontab.swimburger.net
#dotnet #csharp #blazor #aspnet

2026-03-03

The Agentic Coding Workflow: A Practical Example #dotnet #aspnet #blazor #ai #agents

isaacl.dev/g1x

2026-03-03

🧩 New: Modernizing .NET – Part 14
WebHost still works, but WebApplication is better.
Here’s how to migrate your ASP.NET Core app to the modern hosting model.

Read → medium.com/@michael.kopt/moder
#DotNet #DotNetCore #DotNet8 #DotNet9 #DotNet10 #ASPNet #ASPNetCore #CSharp #Middleware

Leanpubleanpub
2026-02-28

Learn Kubernetes & Docker - .NET Core, Java, Node.JS, PHP or Python by Arnaud Weil is free with a Leanpub Reader membership! Or you can buy it for $11.99! leanpub.com/k8s

2026-02-25

Simplify your ASP.NET Core development with Needlr. Set up your web applications effortlessly and get to coding faster. #aspnet #dotnet

isaacl.dev/g1i

//devdigestdevdigest
2026-02-19

⚡️ Setting Up Production-Ready Monitoring in ASP.NET Core

🏷️

devdigest.today/goto/5381

//devdigestdevdigest
2026-02-17

⚡️ A quick tour of Instrument<T> in System.Diagnostics.Metrics

🏷️

devdigest.today/goto/5346

2026-02-17

🧵 New: Modernizing .NET – Part 12
Use HttpClientFactory in legacy background threads with the SharedContext pattern.
Thread‑safe, DI‑friendly, minimal refactoring.

📖 Read → medium.com/@michael.kopt/19c66
#DotNet #DotNetCore #DotNet8 #DotNet9 #DotNet10 #ASPNet #ASPNetCore #CSharp #LegacyCode #HttpClientFactory #DependencyInjection #BackgroundThreads

Scott Gallowayscottgal@hachyderm.io
2026-02-16

Ok next update to StyloBot is crazy, worked on the ASP.NET interaction:

app.MapPost("/api/checkout", () => Results.Ok())
.BlockBots()
.BlockIfSignal(SignalKeys.GeoIsVpn, SignalOperator.Equals, "True");

YUP, that's enterprise grade vpn detection on a minimal api (two lines of config in program.cs). #aspnet #aspnetcore #minimalapi coming soon stylobot.net

Scott Gallowayscottgal@hachyderm.io
2026-02-14

Man I fucking LOVE building stuff. My free / OSS bot & scraper protection system is now live
stylobot.net . It's umm...VERY different from almost anything else. Oh and ridiculously more powerful than almost anything else too by taking a behavioural approach rather than simple string matching. It builds a comprehensive ledger of each user (no PII stored!) and their behaviour across sessions, requests, and even within a single request-response operation.
Uses heuristics & deterministic analysis (with optional LLM escalation for novel detections).
Free, ASP.NET Middleware, Docker Image & executable. Public Domain (commercial addons coming later)
github.com/scottgal/stylobot
#aspnet #csharp #botdetector #oss #unlicense

//devdigestdevdigest
2026-02-11

⚡️ .NET 11 Preview 1 lands with updates across the stack

🏷️

devdigest.today/goto/5331

2026-02-10

Explore the implementation of client assertions in ASP.NET Core with OpenID Connect, OAuth DPoP, and OAuth PAR. #ASPNet #dotnet #oauth

isaacl.dev/g0w

2026-02-10

📡 New post: Modernizing .NET – Part 11
Migrate from WebClient and RestSharp to HttpClientFactory.
Full code, DI setup, and performance boost.

Read → medium.com/@michael.kopt/c3a74
#DotNet #DotNetCore #DotNet8 #DotNet9 #DotNet10 #ASPNet #ASPNetCore #CSharp #Linux #RestShart #WebClient #DepedencyInjection

ASP.NET for .NET 11 summarized roadmap

The upcoming version of .NET 11, which is going to be a short term release of .NET that succeeds .NET 10, will feature improvements that are planned for the ASP.NET framework for web applications, such as Blazor and Blazor WebAssembly applications.

The top feedback and pain points will be addressed in the live roadmap for ASP.NET for .NET 11, which will improve your web application usability and reliability for developers and users alike.

You can find the live roadmap on this GitHub page, along with the discussion.

The roadmap addresses the points, including, but not limited to:

  • It has been planned that the discriminated unions is expected to be added to this version of .NET and ASP.NET.
  • The feature parity for the static server-side rendering is expected to be addressed.
  • The form validation component for Blazor will be improved in this version, such as asynchronous validation enhancements.
  • WebAssembly will be supported on CoreCLR interpreter runtime, eliminating the need for Mono, with .NET 12 being the version that completes the transition.
  • Progressive Web Applications (PWA) will be added to the Blazor Web App template.
  • The concept of state transitions for animations will be added in Blazor to better support animated components.

In real-world projects, the AOT and trimming support is still fragile, because of the following challenges:

  • Reflection remains a blocker, since trimmed web applications that use reflection-based frameworks and other components may fail to render with error messages or components failing to load.
  • System.Text.Json is currently hostile to AOT, since it uses reflection for serialization and deserialization operations by default, unless explicit source code generation is used.
  • AOT + Trimming currently doesn’t fail at build time if trimming is deemed to be unsafe due to reflection and other incompatible features. Also, the documentation suffers from fragmented trimming guidance for third-party libraries.

If everything goes as planned, .NET 11 Preview 1 will be released as early as today, and developers and curious bleeding-edge users will be able to try it out.

#Net #ASPNET #Blazor #C #csharp #dotnet #news #Razor #Tech #Technology #update
2026-02-03

📊 New post: Modernizing .NET – Part 10
Replace OleDB with ExcelDataReader in .NET Core.
Setup, formatting, exporting, performance tips — all covered.
Read → medium.com/@michael.kopt/moder
#DotNet #DotNetCore #DotNet8 #DotNet9 #DotNet10 #ASPNet #ASPNetCore #Excel #OLEDB

2026-01-30

Boost your web app security by implementing step-up authentication. Ensure that sensitive actions are protected and user trust is strengthened. #dotnet #aspnet

isaacl.dev/gz7

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst