dotnet/msbuild
在 GitHub 查看Add explicit tests around CompareAssemblyIdentity implementation
Open
#5,974 创建于 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