MAUI 16 KB support and C# async patterns
A varied .NET roundup covering MAUI’s 16 KB page size change, async programming and disposal, API protection, performance, EF Core, and AI.
Jasen's top three picks
- 1 Preparing Your .NET MAUI Apps for Google Play’s 16 KB Page Size Requirement
devblogs.microsoft.com
A practical heads-up for Android teams: MAUI apps need to be checked now, not after Google Play’s November deadline.
- 2 5 Traps That Break .NET Background Services in Production (and How We Fixed Them)
medium.com
A useful postmortem on why BackgroundServices fail in production, with patterns that keep hosted workers from disappearing quietly.
- 3 Asynchronous Programming in C# with async/await
medium.com
A solid refresher on async/await that still helps newer developers avoid blocking work and thread pool headaches.
Editor's note
I pulled together a mixed issue again, with no single theme by design. The MAUI 16 KB page-size prep piece is especially timely for teams shipping Android apps, and the background services article is a good reminder that hosted code can fail quietly in production. I also liked the C# 14 extension members write-up because it points at language changes many teams will soon want to experiment with.
Today's articles
Preparing Your .NET MAUI Apps for Google Play’s 16 KB Page Size Requirement
devblogs.microsoft.com
Learn about the upcoming 16 KB page size requirement for Google Play and how to ensure your .NET MAUI apps are ready for the November 2025 deadline. The post Preparing Your .NET MAUI Apps for Google ...
Read article5 Traps That Break .NET Background Services in Production (and How We Fixed Them)
medium.com
Five production traps with .NET BackgroundServices — and the patterns that kept them from silently killing our system.
Topics: ASP.NET Core Performance
Read articleAsynchronous Programming in C# with async/await
medium.com
My Journey into Building Non-Blocking Applications. Continue reading on .Net Programming »
Read articleAsync Disposal in C#: When and How to Use IAsyncDisposable
medium.com
Discover the key use cases of IAsyncDisposable in modern C# and how it improves async workflows.
Read articleHow to Restrict API Calls in ASP.NET Core Using Action Filters and Middleware
c-sharpcorner.com
This article demonstrates how to implement age-based restrictions on specific endpoints with Action Filters and application-wide blacklist checks using Middleware. Learn to control access, enhance sec...
Topics: ASP.NET Core Security
Read articleCloud Cost Leaks in .NET Microservices — and How to Plug Them
blog.yaseerarafat.com
Discover hidden cloud costs in .NET microservices, optimize Azure and AWS spend, and implement FinOps best practices to save thousands…
Topics: Azure Performance
Read articleVS Code - Let it Cook with GPT-5-Codex
youtube.com
Talk: What’s new in .NET MAUI at Build 2025: Recap
Topics: GitHub Copilot OpenAI Visual Studio Code
Read article7 C# Features You’re Underutilizing
medium.com
Are you writing C# like it’s still 2010? The language has evolved a lot, and if you’re not using some of its more modern features, you’re… Continue reading on Works On My Machine »
Topics: C# Performance
Read articleTop 10 Open Source .NET Projects and Libraries for InsurTech in 2025
faciletechnolab.com
Discover the top 10 open-source .NET projects and libraries revolutionizing InsurTech in 2025. Boost efficiency with AI, streamline claims processing, and enhance customer experience.
Read articleThe Complete Guide to C# Performance Optimization: Doing More with Less
levelup.gitconnected.com
Here’s a practical, no-fluff guide you can hand to senior .NET teams. Think of it as the briefing I’d give an internal product group at… Continue reading on Level Up Coding »
Topics: C# Performance
Read articleWhat Microsoft is NOT Telling You About .NET 10
medium.com
It’s Not Just About Performance. A Fundamental Shift is Coming, and the Clues Are Hiding in Plain Sight.
Read articleC# Channels Uncovered: Bounded, Unbounded, and How to Pick the Right One
medium.com
Part 2 in a beginner-friendly guide to thread-safe async messaging in .NET
Read articleHow Software Consultants Use LLMs with .NET for Enterprise Automation.
medium.com
In today’s fast-paced digital world, businesses are always searching for smarter ways to automate operations, reduce costs, and stay…
Read articleIs .NET 10 for AI Replacing Python?
medium.com
AI is no longer optional. Every engineering team is being asked the same question: How do we harness AI while still delivering reliable…
Read articlesleep-pc: a .NET Native AOT tool to make Windows sleep after a timeout
andrewlock.net
In this post I describe a small native AOT .NET tool that I built to force a Windows PC to go to sleep after a timer expires
Topics: Native AOT Performance
Read articleFrom Entity Framework to EF Core: What Every .NET Beginner Should Know
medium.com
When developers talk about “EF” today, they usually mean Entity Framework Core (EF Core). But it wasn’t always like this. Entity Framework…
Read article🚀 Unlocking C# 14 Extension Members: The Future of Extending Types
c-sharpcorner.com
Unlock the power of C# 14 extension members! This article explores how to extend existing types with properties, static methods, and more, going beyond traditional extension methods. Discover the new ...
Topics: C# Source Generators
Read article