nuget - Microsoft Bot Builder with .NET 4.5? -
i trying install microsoft bot builder nuget package project targets .net framework 4.5. when click install, following error:
could not install package 'microsoft.bot.builder 3.0.1'. trying install package project targets '.netframework,version=v4.5', package not contain assembly references or content files compatible framework. more information, contact package author.
is there version of bot builder package compatible .net version 4.5? or out of luck , have change target framework of applicaton?
the last version of framework supported 4.5 1.1.0
, after version framework targeted .net 4.6.
you can command
install-package microsoft.bot.builder -version 1.1.0
and install version, or can change project use .net 4.6, or compile source , see if can compile under .net 4.5.
Comments
Post a Comment