.NET — briefings & field notes

Five dated news digests and five engineering Q&A entries. Each item cites primary documentation or release artifacts (not generic placeholders).

Latest news

News

.NET 9 ships with performance-focused runtime, libraries, and SDK improvements

By StackBrief Editorial Desk ·

Microsoft’s .NET 9 announcement highlights thousands of performance changes, adaptive Server GC, and new vectorization support for modern CPUs.

Align ASP.NET Core, EF Core, and MAUI package versions with the 9.0 train.

News

dotnet/runtime v9.0.0 tag marks the open-source runtime freeze for the release

By StackBrief Editorial Desk ·

GitHub release notes enumerate assembly version bumps useful when diffing internal forks or trimming self-contained deployments.

Scan for breaking changes in reflection-heavy serializers.

News

.NET 9 download hub documents supported OS matrix and container images

By StackBrief Editorial Desk ·

Official download pages list SDK installers and container tags; infrastructure teams should pin digests in Kubernetes manifests.

Validate glibc compatibility on older Linux hosts.

News

.NET Conf 2024 sessions cover Aspire, cloud-native, and modernization topics

By StackBrief Editorial Desk ·

On-demand videos explain how teams adopt .NET 9 features gradually; use them for lunch-and-learn curricula.

Pair videos with hands-on labs from learn.microsoft.com.

News

Release notes README in dotnet/core aggregates workload-level headlines

By StackBrief Editorial Desk ·

The consolidated README in dotnet/core links to workload-specific documents for ASP.NET Core, Windows Desktop, and MAUI.

Track this file across monthly servicing updates.

Questions & answers

Q&A

How does adaptive Server GC differ from older workstation defaults?

By StackBrief Editorial Desk ·

The .NET 9 blog explains adaptive Server GC tuning based on application memory needs; capture GC metrics before/after upgrading web APIs.

Use dotnet-counters during soak tests.

Q&A

Which package should I bump first when moving from .NET 8 to .NET 9?

By StackBrief Editorial Desk ·

Bump the shared framework and SDK, restore, fix analyzer warnings, then incrementally update Microsoft.* package versions according to release notes.

Watch for source-generator breaking changes.

Q&A

Where are breaking changes for ASP.NET Core 9 documented?

By StackBrief Editorial Desk ·

ASP.NET Core’s migration docs list behavior changes for routing, authentication, and minimal APIs—read them before deploying to production.

Run smoke tests on OAuth/OIDC flows.

Q&A

How do I verify self-contained publish sizes after .NET 9 trimming changes?

By StackBrief Editorial Desk ·

Use dotnet publish -p:PublishTrimmed=true only on supported workloads; diff publish folders and run ILLinker warnings as errors in CI.

Validate reflection-heavy plugins manually.

Q&A

What is the guidance for NativeAOT on .NET 9 servers?

By StackBrief Editorial Desk ·

NativeAOT remains scenario-specific; read dotnet/runtime notes and sample repos before committing serverless cold-start optimizations.

Profile compatibility with serializers and DI containers.