【发布时间】:2019-01-01 04:40:06
【问题描述】:
在我的程序集中我想使用
SomeLibrary.dll -> Newtonsoft.Json, Version 10.0.0.0
我通过路径引用SomeLibrary.dll。那我也有
Microsoft.NET.Sdk.Functions -> Newtonsoft.Json, Version 9.0.0.1
它们都被 Nuget 引用。当我这样做时,这会导致版本不匹配
JsonConvert.DeserializeObject<SomeTypeFromSomeLibrary>(json)
对此我能做些什么? :(
【问题讨论】:
标签: c# .net nuget .net-assembly versioning