Draft
Conversation
Agent-Logs-Url: https://github.com/Coflnet/cloud/sessions/266b0d33-667d-4b75-af0a-64ad97b173e4 Co-authored-by: Ekwav <[email protected]>
…etResult() Agent-Logs-Url: https://github.com/Coflnet/cloud/sessions/266b0d33-667d-4b75-af0a-64ad97b173e4 Co-authored-by: Ekwav <[email protected]>
Copilot
AI
changed the title
[WIP] Update packages to latest .NET version
Update to .NET 10 and latest NuGet packages
Mar 31, 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.
Upgrades all projects from
netstandard2.0/netcoreapp2.2/netcoreapp3.1tonet10.0and bumps all NuGet dependencies to current stable releases.Package versions
Breaking change fixes
RestSharp 107+ API changes
Method.GET→Method.Get(PascalCase enum)client.Execute(request)now requiresusing RestSharp;(moved to extension method)client.BaseHost = urlremoved — base URL passed to constructor insteadExecuteAsync(request, callback)in favour of fire-and-forget_ = client.ExecuteAsync(request)new RestRequest(Method.Get)(no resource path) →new RestRequest()RangeTree 3.x renamed to IntervalTree
NUnit 4.x
CollectionAssert.AreEqual(expected, actual)→Assert.That(actual, Is.EqualTo(expected))MessagePack 3.x source generator
The project uses
TypelessContractlessStandardResolverAllowPrivatewhich doesn't require[MessagePackObject]/[Key]attributes; the stricter 3.x analyzer diagnostics (MsgPack003/004/005/007/011) are suppressed via<NoWarn>in each project. Two generator-breaking issues required code changes:CreateGroupChat.Params(source generator requires it)LocalChatMessagepartial(required for types with private serializable members)Other
<OutputType>Exe</OutputType>fromdev.csproj— theMainentry point has been commented out for some time