我正在尝试使用VS 2015将OWIN JWT添加到webapi项目中。参考显示了Microsoft.Owin.Security.Jwt, Version=4.0.0.0
和Microsoft.IdentityModel.Tokens Version=5.3.0.0
。下面是运行时的错误。我在源代码中找不到5.2.0.0
。
=== Pre-bind state information ===
LOG: DisplayName = Microsoft.IdentityModel.Tokens, Version=5.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
(Fully-specified)
LOG: Appbase = file:///C:/Users/xxx/Documents/xxx/WebApi/
LOG: Initial PrivatePath = C:\Users\xxx\Documents\xxx\WebApi\bin
Calling assembly : Microsoft.Owin.Security.Jwt, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
有什么想法吗?
答案 0 :(得分:0)
首先,您应该了解发生的异常不仅限于Microsoft.IdentityModel.Tokens程序集,也不限于Visual Studio版本。该问题在程序集引用中很普遍。
普遍的原因是:您在项目中引用的版本不同于执行中使用的“ DLL”包(bin文件夹)中的版本。但是,我认为这远比手动发生更远。
1-我可以根据程序集名称进行猜测。您的解决方案中有多个项目,最后您使用NuGet安装了程序集,其版本高于其他项目(当然使用NuGet)
尝试验证所有项目中已安装的软件包,并将它们全部更新为最新的Version = 5.3.0.0。
另一个可能的原因是:此程序包需要Microsoft.IdentityModel.Logging 尝试执行上面第1点所述的相同操作。