Conversation
.NET 10 is now the current LTS release. This updates all project files, CI workflows, and related settings to target .NET 10. - Update TargetFramework(s) from net8.0 to net10.0 across all projects - Update LangVersion from 12 to 14 (C# 14 ships with .NET 10) - Update AnalysisLevel from 8.0-Recommended to 10.0-Recommended - Update Microsoft.Extensions.Logging from 8.0.0 to 10.0.0 - Update all GitHub Actions workflows to use .NET SDK 10.0.x - Fix PushNugetPackageToIntNugetOrg workflow (was still on 7.0.x) - Remove Microsoft.CSharp and System.Net.Http packages from tests (now included in .NET 10, NU1510 errors) - Suppress ASPDEPR004/ASPDEPR008 in TestServer for deprecated IWebHost/WebHostBuilder APIs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
v0.0.42 fixes a System.Text.Json source generator error where [JsonInclude] on protected properties in RemoteReference is rejected by .NET 10 (properties changed to protected internal). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The subprocess working directory path was hardcoded to net8.0 instead of net10.0, causing ShouldDumpBrowserProcessStderr to fail. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
.NET 10 promotes AOT and trim analysis warnings to errors by default during PublishAot. PuppeteerSharp is not fully AOT/trim-compatible, so suppress these in the demo project. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Feb 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
net8.0tonet10.0(.NET 10 LTS)Microsoft.Extensions.Loggingfrom 8.0.0 to 10.0.010.0.x(also fixesPushNugetPackageToIntNugetOrgwhich was still on7.0.x)Microsoft.CSharpandSystem.Net.Httppackages from test project (now built into .NET 10)ASPDEPR004/ASPDEPR008in TestServer for deprecatedIWebHost/WebHostBuilderAPIsTest plan
🤖 Generated with Claude Code