Microsoft.Agents.BotBuilder 0.2.141-alpha

Prefix Reserved
Suggested Alternatives

Microsoft.Agents.Builder

Additional Details

Package was renamed.

This is a prerelease version of Microsoft.Agents.BotBuilder.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Agents.BotBuilder --version 0.2.141-alpha
                    
NuGet\Install-Package Microsoft.Agents.BotBuilder -Version 0.2.141-alpha
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Agents.BotBuilder" Version="0.2.141-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Agents.BotBuilder" Version="0.2.141-alpha" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Agents.BotBuilder" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Agents.BotBuilder --version 0.2.141-alpha
                    
#r "nuget: Microsoft.Agents.BotBuilder, 0.2.141-alpha"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Microsoft.Agents.BotBuilder&version=0.2.141-alpha&prerelease
                    
Install Microsoft.Agents.BotBuilder as a Cake Addin
#tool nuget:?package=Microsoft.Agents.BotBuilder&version=0.2.141-alpha&prerelease
                    
Install Microsoft.Agents.BotBuilder as a Cake Tool

Microsoft.Agents.BotBuilder

About

Contains the implementation for the Agents SDK Bot

How to use with Microsoft.Agents.Hosting.AspNetCore

 public class EchoBot : ActivityHandler
 {
     protected override Task OnMessageActivityAsync(ITurnContext<IMessageActivity> turnContext, CancellationToken cancellationToken) 
        => turnContext.SendActivityAsync(turnContext.Activity.Text, cancellationToken)
 }


[Authorize]    
[ApiController]
[Route("api/messages")]
public class BotController(IBotHttpAdapter adapter, IBot bot) : ControllerBase
{
    [HttpPost]
    public Task PostAsync(CancellationToken cancellationToken) 
        => adapter.ProcessAsync(Request, Response, bot, cancellationToken);            
}

Main Types

The main types provided by this library are:

  • Microsoft.Agents.Core.Models.Activity
  • Microsoft.Agents.Core.Interfaces.ITurnContext
  • Microsoft.Agents.BotBuilder.ActivityHandler
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Microsoft.Agents.BotBuilder:

Package Downloads
Microsoft.TeamsFx

This package aims to reduce the developer tasks of implementing identity and access to cloud resources down to single-line statements with "zero configuration".

Microsoft.Agents.BotBuilder.Dialogs

This library implements .NET Simple Dialog classes

GitHub repositories

This package is not used by any popular GitHub repositories.