Do BotFramework is supported for. Netframework 4.7.2. or is it only supported for .Net Core. ?
CodePudding user response:
I would say it does support at least 4.6.1, looking at there example code at
You could have a look here
for more details.
What Microsoft Recommend
Note:Microsoft recommendmigrating to .NET Core, since the performance is very much improved.
What Bot Developer Should Consider
As you know while you would develop bot application you might be needed to integrate other
eco-systemlikeadaptive card,hero cardand so on to make your bot conversation more interactive. So when you would be using older thanasp.net core 2.1 and 3.1you might need to struggle with them. Moreover, most of therecent release v4.14has been developed based onasp.net core 2.1. and 3.1. In addition bot samples for customer onMicrosoft Official GitHubare developed mostly onasp.net core 2.1 and 3.1. As you can have look onofficial document here
Hope above information guided you accordingly.

