From 3799f09ccfc1532fd8a5027e15dad1f2e5d75b15 Mon Sep 17 00:00:00 2001 From: cam1llynha Date: Fri, 24 Oct 2025 11:23:09 -0300 Subject: [PATCH] Fix .NET installation guide: remove reference to non-existent NuGet package Removed instruction to install Microsoft.AutoGen.Agents package, which does not exist on NuGet. Added a note indicating future availability. Resolves issue #6244. --- docs/dotnet/core/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/dotnet/core/installation.md b/docs/dotnet/core/installation.md index 0c2ce8c6e74a..a600b4710e61 100644 --- a/docs/dotnet/core/installation.md +++ b/docs/dotnet/core/installation.md @@ -31,7 +31,7 @@ The *Core* and *Contracts* packages will give you what you need for writing and ```sh dotnet add package Microsoft.AutoGen.AgentChat --version 0.4.0-dev-1 -dotnet add package Microsoft.AutoGen.Agents --version 0.4.0-dev-1 +Note: The Microsoft.AutoGen.Agents package is not currently available on NuGet. This feature is planned for a future release. dotnet add package Microsoft.AutoGen.Extensions --version 0.4.0-dev-1 ``` @@ -45,4 +45,4 @@ To enable running a system with agents in different processes that allows for x- dotnet add package Microsoft.AutoGen.Core.Grpc --version 0.4.0-dev-1 dotnet add package Microsoft.AutoGen.RuntimeGateway.Grpc --version 0.4.0-dev-1 dotnet add package Microsoft.AutoGen.AgentHost --version 0.4.0-dev-1 -``` \ No newline at end of file +```