- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 .NET Standard 2.0 DLL 项目。
除NETStandard.Library 2.0.1
外,没有其他引用一切都很好。
它被 WPF 应用程序引用,一切似乎都工作正常。
一旦我为 System.Collections.Immutable 1.5.0
添加了一个 nuget 包DLL工程,Dependencies
上出现黄色感叹号解决方案资源管理器的根目录。 (嗯......我现在看到即使在我删除这个包之后感叹号仍然存在,但我猜这是一个 VS 错误,因为在添加这个库之前一切似乎都工作得很好)
有了这两个包,一切都很好,但是当我尝试使用 ImmutableDictionary
,我明白了:
System.IO.FileNotFoundException: 'Could not load file or assembly 'System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.'
查看 nuget 包,我知道这两者应该一起工作,因为(根据我的理解)“System.Collections.Immutable”库表示它支持 .NET 标准 2.0。
我对 .NET Standard 世界还很陌生。
查看 System.Collections.Immutable.dll
的公钥 token 在我的主应用程序中 bin
文件夹我看到它确实是b03f5f7f11d50a3a
正如预期的那样。但是版本不同。
通常,在旧的 .NET 中,我会尝试在应用程序的配置文件中添加程序集重定向。但是在这里这样做似乎没有任何区别。将其添加到我引用 DLL 的 WPF 应用程序中:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
... 将异常更改为:
System.IO.FileNotFoundException: 'Could not load file or assembly 'System.Collections.Immutable, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.'
Inner Exception
FileNotFoundException: Could not load file or assembly 'System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
这是怎么回事?我不能同时使用这两个 nuget 包吗?
更新:
我现在注意到我得到的 DLL 版本来自 System.Collections.Concurrent.dll
,虽然我对 System.Collections.Immutable.dll
感兴趣在我的 bin 文件夹中找不到它......我什至没有找到 nuget 包在我的解决方案中的存储位置。
更新 2:
事实证明,当我创建具有类似设置的新解决方案(引用 .NET Standard 2 DLL 的完整框架控制台应用程序)时,我得到了完全相同的行为。
按照@Lasse Vågsæther Karlsen 的建议,我从这里下载了 nuget 包 https://www.nuget.org/packages/System.Collections.Immutable ,从中提取正确的 DLL,并将其放在我的 bin 文件夹中。然后控制台应用程序运行。
我使用的是 15.7.1 版的 Visual Studio。我不确定在最新的 15.7.2 版本中修复了哪些变化...
您可以从这里下载我的可验证示例: https://mega.nz/#!YZMwGABD!eHHxvNdO59l2m5ZlHMG1vvqCd-GHv3EVckR-9htDojs
最佳答案
有两种方法可以解决这个问题:
1 - 更新 ConsoleApp1 的项目文件以将其包含在属性组中
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
2 - 直接在 ConsoleApp1 中添加对 System.Collections.Immutable
的引用项目。
这是一个已知问题,使用项目到项目引用和 NuGet 包引用不会自动正确地传递引用。这正在被追踪here但这些解决方法之一应该可以解除阻止。
关于c# - 本应兼容的不兼容 .NET Standard 程序集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50771569/
我是一名优秀的程序员,十分优秀!