我有 ASP.Net MVC 项目。该项目包含WebGrease,packages.config:
<package id="WebGrease" version="1.5.2" targetFramework="net462" />
最近因为(https://www.nuget.org/packages/BundleTransformer.MicrosoftAjax/)我将 AjaxMin 添加到我的 packages.config 中:
<package id="AjaxMin" version="5.14.5506.26202" targetFramework="net461" />
在我的代码中,我使用 IsNullOrWhiteSpace() 扩展方法。该方法实际上存在于这两个库中:
Visual Studio 无法决定必须使用哪一个。
我无法删除对 WebGrease 的引用,因为如果这样做,我会遇到以下异常:
我该如何解决冲突?
谢谢