dotnet/msbuild
View on GitHubAdd explicit tests around CompareAssemblyIdentity implementation
Open
#5,974 opened on Dec 16, 2020
help wantedtestingtriaged
Repository metrics
- Stars
- (5,062 stars)
- PR merge metrics
- (Avg merge 11d 7h) (125 merged PRs in 30d)
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