我有一个.NET项目,该项目引用了一个依赖于Newtonsoft.Json版本6.0.8的nuget。努吉特是 https://www.nuget.org/packages/Microsoft.Azure.KeyVault/3.0.2
我只想在我的项目中使用最新版本的Newtonsoft,所以我希望这个项目实际使用Newtonsoft的12.0版本。我不确定这是否可能。我尝试将 app.config 文件添加到我的项目中,但这不起作用。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-11.0.1.0" newVersion="12.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
有什么方法可以实现吗?
我解决了这个问题,使项目明确引用了最新版本的Newtonsoft。一切似乎都在正常。
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />