-
Notifications
You must be signed in to change notification settings - Fork 829
.NET: Remove version override for v10 packages #2383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET: Remove version override for v10 packages #2383
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR removes version overrides for System.Net.ServerSentEvents and Microsoft.Bcl.AsyncInterfaces packages, allowing them to use the stable 10.0.0 version defined in the central package management file (Directory.Packages.props) instead of the release candidate version 10.0.0-rc.2.25502.107.
- Standardizes package versions by removing
VersionOverrideattributes across all project files - Transitions from RC version
10.0.0-rc.2.25502.107to stable version10.0.0for two key packages - Applies consistently across source, test, and sample projects
Reviewed changes
Copilot reviewed 27 out of 27 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| dotnet/src/Microsoft.Agents.AI.A2A/Microsoft.Agents.AI.A2A.csproj | Removes version overrides to use centrally managed versions |
| dotnet/src/Microsoft.Agents.AI.AGUI/Microsoft.Agents.AI.AGUI.csproj | Removes version overrides to use centrally managed versions |
| dotnet/src/Microsoft.Agents.AI.DevUI/Microsoft.Agents.AI.DevUI.csproj | Removes version override for System.Net.ServerSentEvents |
| dotnet/src/Microsoft.Agents.AI.Hosting.A2A/Microsoft.Agents.AI.Hosting.A2A.csproj | Removes version overrides to use centrally managed versions |
| dotnet/src/Microsoft.Agents.AI.Hosting.A2A.AspNetCore/Microsoft.Agents.AI.Hosting.A2A.AspNetCore.csproj | Removes version overrides to use centrally managed versions |
| dotnet/src/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.csproj | Removes version overrides to use centrally managed versions |
| dotnet/src/Microsoft.Agents.AI.Hosting.OpenAI/Microsoft.Agents.AI.Hosting.OpenAI.csproj | Removes version override for System.Net.ServerSentEvents |
| dotnet/tests/Microsoft.Agents.AI.A2A.UnitTests/Microsoft.Agents.AI.A2A.UnitTests.csproj | Removes version overrides from test project |
| dotnet/tests/Microsoft.Agents.AI.AGUI.UnitTests/Microsoft.Agents.AI.AGUI.UnitTests.csproj | Removes version overrides from test project |
| dotnet/tests/Microsoft.Agents.AI.Hosting.A2A.UnitTests/Microsoft.Agents.AI.Hosting.A2A.UnitTests.csproj | Removes version overrides from test project |
| dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests.csproj | Removes version overrides from integration test project |
| dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.UnitTests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.UnitTests.csproj | Removes version overrides from test project |
| dotnet/tests/Microsoft.Agents.AI.Hosting.AzureFunctions.IntegrationTests/Microsoft.Agents.AI.Hosting.AzureFunctions.IntegrationTests.csproj | Removes version override for System.Net.ServerSentEvents from integration test |
| dotnet/tests/Microsoft.Agents.AI.Hosting.OpenAI.UnitTests/Microsoft.Agents.AI.Hosting.OpenAI.UnitTests.csproj | Removes version overrides from test project |
| dotnet/samples/A2AClientServer/A2AClient/A2AClient.csproj | Removes version overrides from sample project |
| dotnet/samples/A2AClientServer/A2AServer/A2AServer.csproj | Removes version overrides from sample project |
| dotnet/samples/AGUIClientServer/AGUIClient/AGUIClient.csproj | Removes version overrides from sample project |
| dotnet/samples/AGUIClientServer/AGUIDojoServer/AGUIDojoServer.csproj | Removes version overrides from sample project |
| dotnet/samples/AGUIClientServer/AGUIServer/AGUIServer.csproj | Removes version overrides from sample project |
| dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/AgentWebChat.AgentHost.csproj | Removes version overrides from sample project |
| dotnet/samples/AgentWebChat/AgentWebChat.Web/AgentWebChat.Web.csproj | Removes version overrides from sample project |
| dotnet/samples/GettingStarted/A2A/A2AAgent_AsFunctionTools/A2AAgent_AsFunctionTools.csproj | Removes version overrides from sample project |
| dotnet/samples/GettingStarted/AgentProviders/Agent_With_A2A/Agent_With_A2A.csproj | Removes version overrides from sample project |
| dotnet/samples/GettingStarted/Agents/Agent_Step10_AsMcpTool/Agent_Step10_AsMcpTool.csproj | Removes version override for System.Net.ServerSentEvents from sample |
| dotnet/samples/GettingStarted/DevUI/DevUI_Step01_BasicUsage/DevUI_Step01_BasicUsage.csproj | Removes version override for System.Net.ServerSentEvents from sample |
| dotnet/samples/GettingStarted/ModelContextProtocol/Agent_MCP_Server/Agent_MCP_Server.csproj | Removes version override for System.Net.ServerSentEvents from sample |
| dotnet/samples/GettingStarted/ModelContextProtocol/Agent_MCP_Server_Auth/Agent_MCP_Server_Auth.csproj | Removes version override for System.Net.ServerSentEvents from sample |
|
This is already handled by #2128 |
|
I couldn't push to your branch to address the merge conflicts, so I put up the sole remaining change here: #2393 |
Pull request was closed
No description provided.