Microsoft Bot Framework .NET Core Templates will help you to quickly build new conversational AI bots using Bot Framework v4.
In this post, we will install the 3 C# Bot Framework templates using the command line tool.
Prerequisites
- Visual Studio Code or Command Line
- .NET Core 3.1
Install Bot Framework Templates
Open Console Window or VS Code Terminal window and check the version of .NET Core installed by running the below command.
dotnet --version
Install the following templates by running the below command –
- Echo Bot
- Core Bot
- Empty Bot
dotnet new -i Microsoft.Bot.Framework.CSharp.EchoBot
dotnet new -i Microsoft.Bot.Framework.CSharp.CoreBot
dotnet new -i Microsoft.Bot.Framework.CSharp.EmptyBot
You don’t have to install all the 3 templates. You can install only the one that is required. Core Bot template comes configured with LUIS and Waterfall dialog model.

To check if the templates are installed, you can verify using the below command.
dotnet new --list

You must be logged in to post a comment.