dotnet/msbuild
GitHub で見るAdd explicit tests around CompareAssemblyIdentity implementation
Open
#5,974 opened on 2020年12月16日
help wantedtestingtriaged
説明
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