The current implementation of the AbstractManifestFinder.GetManifestFilenames can return the same file multiple times. The primary cause of this seems to be related to multiple IManifestFinder instance of the same type being registered more than once. Therefore, the ManifestFinderRegistry should only register an AbstractManifestFinder if it has not already been registered.
The current implementation of the
AbstractManifestFinder.GetManifestFilenames
can return the same file multiple times. The primary cause of this seems to be related to multipleIManifestFinder
instance of the same type being registered more than once. Therefore, theManifestFinderRegistry
should only register anAbstractManifestFinder
if it has not already been registered.