-
Notifications
You must be signed in to change notification settings - Fork 756
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strong name signature could not be verified. #984
Comments
We haven't seen this before, is there more information you can provide? OS, build, platform, repro steps? |
I'm using a Microsoft-hosted agent with It installs .NET Core It's a unit testing project that targets Here's the build log: https://dev.azure.com/aalmada/NetFabric.Hyperlinq/_build/results?buildId=225 It fails when executing the unit tests that uses a class from |
Coverlet modifies the files under test, which is what's leading to your error. You should exclude the Rx/Ix libraries from being instrumented by Coverlet as you're not collecting coverage for those. |
Oh! Thanks! I had no idea... |
I can now confirm that, excluding |
I'm getting the following error when building my project, that depends on
System.Interactive
, using an Azure DevOps pipeline:System.IO.FileLoadException : Could not load file or assembly 'System.Interactive, Version=4.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)
It happens for both
3.2.0
and4.0.0
versions ofSystem.Interactive
.The text was updated successfully, but these errors were encountered: