97 wires and counting

$ follow .NET

Keep up with .NET in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-04
stories 123

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

macOS signal handling crash fix, On-Demand Resources for simulator

By RepoJournal · Filed · About .NET

The .NET runtime fixes a macOS crash when stale signal flags call SIG_IGN or SIG_DFL, and Mac Catalyst apps can now load on-demand resources in the simulator.

The runtime now guards against a macOS crash that occurred when a process exec'd dotnet with a signal handler installed. macOS preserves sa_flags across execve, leaving SA_SIGINFO set even when the handler is cleared to SIG_IGN or SIG_DFL; the runtime previously called the stale pointer and crashed. It now checks for SIG_IGN and SIG_DFL before invoking the previous handler, with a regression test added. [1]

Mac iOS developers get a fix for on-demand resources (ODR) in the simulator. The build previously wrote asset packs next to the app bundle with an AssetPackManifestTemplate.plist pointing at http://127.0.0.1, which only works on device where the IDE hosts them. Since the simulator has no hosting server, NSBundleResourceRequest failed at runtime with "No manifest found for bundleID". The fix embeds the packs in the app bundle for the simulator. [2]

Meanwhile, the Wasm CoreCLR runtime adds a browser test leg with readyToRun: true, crossgen2-compiling merged runners so wasm JIT regressions are actually exercised instead of relying on per-test workarounds. [3] The Roslyn SDK now publishes Windows PDBs for five VSIX assemblies, fixing missing symbols in the legacy VS insertion symbol store. [4]

Quick answers

What shipped in .NET on September 4, 2026?
The .NET runtime fixes a macOS crash when stale signal flags call SIG_IGN or SIG_DFL, and Mac Catalyst apps can now load on-demand resources in the simulator. In total, 61 commits and 62 pull requests landed.
Who contributed to .NET on September 4, 2026?
10 developers shipped this update, including Rolf Bjarne Kvinge, dotnet-maestro, dotnet-maestro[bot], Larry Ewing, AndyAyersMS, jtschuster, davidwengier, and dibarbet, and 2 more.
What were the notable .NET updates?
Check for SIG_IGN and SIG_DFL before calling previous signal handler, [msbuild] Embed on-demand resource asset packs in the app bundle for the simulator. Fixes #26218 (#26481), and Run browser wasm runtime tests with ReadyToRun (#133134).