dotnet/msbuild
Vedi su GitHubAdd explicit tests around CompareAssemblyIdentity implementation
Open
#5974 aperta il 16 dic 2020
help wantedtestingtriaged
Metriche repository
- Star
- (5062 star)
- Metriche merge PR
- (Merge medio 11g 7h) (125 PR mergiate in 30 g)
Descrizione
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