dotnet/msbuild
View on GitHubAdd explicit tests around CompareAssemblyIdentity implementation
Open
#5974 opened on Dec 16, 2020
help wantedtestingtriaged
Description
Before the .NET Core port, ResolveAssemblyReferences compared assembly identities using a native method call:
Now, there's a managed implementation that optionally calls that one on Windows:
We should have tests that validate that implementation using the native method as a reference. This is a nice unit-testing problem since it's functional and idempotent, so we can probably hit 100% code coverage.
Related: #3930, #5973