使用.NET 4.5的Microsoft Bot Builder?

时间:2016-07-25 16:44:59

标签: .net nuget botframework

我正在尝试将Microsoft Bot Builder nuGet包安装到面向.NET framework 4.5的项目中。当我单击安装时,出现以下错误:

Could not install package 'Microsoft.Bot.Builder 3.0.1'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.5', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.

是否有与.NET 4.5兼容的Bot Builder软件包的任何版本?或者我运气不好,必须改变我的应用程序的目标框架?

1 个答案:

答案 0 :(得分:2)

支持4.5的框架的最后一个版本是1.1.0,在该版本之后,框架仅针对.NET 4.6。

您可以执行命令

Install-Package Microsoft.Bot.Builder -Version 1.1.0

这将安装该版本,或者您可以将项目更改为使用.NET 4.6或compile it from source,看看是否可以在.NET 4.5下编译它。