本应兼容的不兼容 .NET Standard 程序集?
Incompatible .NET Standard assemblies that should have been compatible?
我有一个 .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 世界还很陌生。
查看我主应用程序 bin
文件夹中 System.Collections.Immutable.dll
的 public 密钥标记,我发现它确实是 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 的建议,我从这里 https://www.nuget.org/packages/System.Collections.Immutable 下载了 nuget 包,从中提取了正确的 DLL,并将其放在我的 bin 文件夹中。然后控制台应用程序工作。
我使用的是 Visual Studio 的 15.7.1 版本。我不确定在最新的 15.7.2 版本中修复了哪些变化...
您可以从这里下载我的可验证示例:
https://mega.nz/#!YZMwGABD!eHHxvNdO59l2m5ZlHMG1vvqCd-GHv3EVckR-9htDojs
有两种方法可以解决这个问题:
1 - 更新 ConsoleApp1 的项目文件以将其包含在 属性 组
中
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
2 - 在 ConsoleApp1 中直接添加对 System.Collections.Immutable
的引用
项目。
这是一个已知问题,使用项目到项目引用和 NuGet 包引用不会自动正确地传递引用。正在跟踪此问题 here,但这些解决方法之一应该可以解除阻止。
就我而言,原来是同一个解决方案中的项目有不同版本的 System.Collections.Immutable.dll。 (1.4.0 和 1.5.0)
MSBuild 如何没有注意到有 2 个版本的 dll,并试图在某些项目中查找和加载 dll 版本 1.5.0 而不是 1.4.0。
解决这个问题只需更新并确保每个项目。在同一个sln中有相同版本的dll。
我 System.Net.Http 也遇到这个问题。
我有一个 .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 世界还很陌生。
查看我主应用程序 bin
文件夹中 System.Collections.Immutable.dll
的 public 密钥标记,我发现它确实是 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 的建议,我从这里 https://www.nuget.org/packages/System.Collections.Immutable 下载了 nuget 包,从中提取了正确的 DLL,并将其放在我的 bin 文件夹中。然后控制台应用程序工作。
我使用的是 Visual Studio 的 15.7.1 版本。我不确定在最新的 15.7.2 版本中修复了哪些变化...
您可以从这里下载我的可验证示例: https://mega.nz/#!YZMwGABD!eHHxvNdO59l2m5ZlHMG1vvqCd-GHv3EVckR-9htDojs
有两种方法可以解决这个问题:
1 - 更新 ConsoleApp1 的项目文件以将其包含在 属性 组
中<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
2 - 在 ConsoleApp1 中直接添加对 System.Collections.Immutable
的引用
项目。
这是一个已知问题,使用项目到项目引用和 NuGet 包引用不会自动正确地传递引用。正在跟踪此问题 here,但这些解决方法之一应该可以解除阻止。
就我而言,原来是同一个解决方案中的项目有不同版本的 System.Collections.Immutable.dll。 (1.4.0 和 1.5.0)
MSBuild 如何没有注意到有 2 个版本的 dll,并试图在某些项目中查找和加载 dll 版本 1.5.0 而不是 1.4.0。
解决这个问题只需更新并确保每个项目。在同一个sln中有相同版本的dll。
我 System.Net.Http 也遇到这个问题。