Is there any update on this issue? SONARSEC-2690 I’m having the same issue with SonarCloud but I am not able to mitigate the issue by using the same version of these libraries with the versions that Sonar uses. This is because I depend on packages which indirectly use System.Buffers, System.Numerics.Vectors and System.Runtime.CompilerServices.Unsafe. These packages are not available with the same versions as Sonar uses. I’ve tried fixing the issue by referencing the packages myself like this:
<PackageReference Include="System.Buffers" Version="4.5.1" PrivateAssets="All" NoWarn="NU1605"/>
But to no avail. I’ve also noticed that no matter which version of the packages I use, the MVID mentioned in the error stays the same. For example, System.Buffers version 4.5.1. is MVID ‘36e84b0d-9d74-4086-a062-54e1963f24d5’ (same as in the error john.ruark described) and System.Buffers version 4.3.0 is also MVID ‘36e84b0d-9d74-4086-a062-54e1963f24d5’.
Any help would be greatly appreciated.
Sander