.NET: Updated package versions for RC release#4067
Merged
dmytrostruk merged 5 commits intomicrosoft:mainfrom Feb 19, 2026
Merged
.NET: Updated package versions for RC release#4067dmytrostruk merged 5 commits intomicrosoft:mainfrom
dmytrostruk merged 5 commits intomicrosoft:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the .NET packaging/versioning configuration to support Release Candidate (RC) NuGet versions via a central RCNumber and a per-project IsReleaseCandidate opt-in, promoting a defined set of libraries to 1.0.0-rcN while leaving other packages on the existing preview/alpha scheme.
Changes:
- Added
RCNumberand conditional RCPackageVersionlogic todotnet/nuget/nuget-package.props. - Marked selected projects as RC via
<IsReleaseCandidate>true</IsReleaseCandidate>in their.csprojfiles. - Refreshed the date-based preview/alpha version stamp for non-RC packages.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| dotnet/nuget/nuget-package.props | Introduces centralized RC versioning logic and retains date-stamped preview/alpha versions for non-RC builds. |
| dotnet/src/Microsoft.Agents.AI/Microsoft.Agents.AI.csproj | Marks core AI package as RC. |
| dotnet/src/Microsoft.Agents.AI.Abstractions/Microsoft.Agents.AI.Abstractions.csproj | Marks Abstractions package as RC. |
| dotnet/src/Microsoft.Agents.AI.Anthropic/Microsoft.Agents.AI.Anthropic.csproj | Marks Anthropic package as RC. |
| dotnet/src/Microsoft.Agents.AI.AzureAI/Microsoft.Agents.AI.AzureAI.csproj | Marks AzureAI package as RC. |
| dotnet/src/Microsoft.Agents.AI.Declarative/Microsoft.Agents.AI.Declarative.csproj | Marks Declarative package as RC. |
| dotnet/src/Microsoft.Agents.AI.OpenAI/Microsoft.Agents.AI.OpenAI.csproj | Marks OpenAI package as RC. |
| dotnet/src/Microsoft.Agents.AI.Purview/Microsoft.Agents.AI.Purview.csproj | Marks Purview package as RC. |
| dotnet/src/Microsoft.Agents.AI.Workflows/Microsoft.Agents.AI.Workflows.csproj | Marks Workflows package as RC. |
| dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Microsoft.Agents.AI.Workflows.Declarative.csproj | Marks Workflows.Declarative package as RC and normalizes whitespace. |
| dotnet/src/Microsoft.Agents.AI.Workflows.Declarative.AzureAI/Microsoft.Agents.AI.Workflows.Declarative.AzureAI.csproj | Marks Workflows.Declarative.AzureAI package as RC. |
| dotnet/src/Microsoft.Agents.AI.Workflows.Generators/Microsoft.Agents.AI.Workflows.Generators.csproj | Marks Workflows.Generators package as RC. |
Comments suppressed due to low confidence (1)
dotnet/src/Microsoft.Agents.AI.Declarative/Microsoft.Agents.AI.Declarative.csproj:8
IsPackableis set tofalsebefore importingnuget-package.props, but that props file setsIsPackabletotrue, so this project will still be packable. If this package is intended to ship (especially now thatIsReleaseCandidateis true), remove theIsPackableoverride; if it’s meant to stay non-packable, move theIsPackable=falsesetting to after the import so it actually takes effect.
<IsReleaseCandidate>true</IsReleaseCandidate>
<VersionSuffix>preview</VersionSuffix>
<NoWarn>$(NoWarn);MEAI001</NoWarn>
<IsPackable>false</IsPackable>
</PropertyGroup>
dotnet/src/Microsoft.Agents.AI.Abstractions/Microsoft.Agents.AI.Abstractions.csproj
Outdated
Show resolved
Hide resolved
lokitoth
approved these changes
Feb 19, 2026
westey-m
approved these changes
Feb 19, 2026
SergeyMenshykh
approved these changes
Feb 19, 2026
This was referenced Feb 23, 2026
This was referenced Feb 23, 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.
Motivation and Context
Contribution Checklist