Vsreddy
Vsreddy

Reputation: 71

Create a Microsoft Bot Project in .net Framework instead of .netcore?

Whenever I create a basic bot project in Visual Studio using Microsoft Bot Framework V4 a project with .net core is being created. I want the bot project to be created/Implemented using .Net Framework.

How to create/Build Bot project(Microsoft Bot Framework V4) using .net framework?

Upvotes: 2

Views: 250

Answers (1)

Nicholas
Nicholas

Reputation: 1980

Yes you can, Microsoft has a github repo containing all the code you need to see how things vary from different frameworks/languages.

https://github.com/Microsoft/BotBuilder-Samples/tree/master/samples

csharp_webapi is a .NET project, take a look!

Upvotes: 6

Related Questions