ProCoSys / Bifrost

Application Development Framework promoting good development practices such as CQRS and MVVM (see readme)
http://bifrost.dolittle.com
Other
1 stars 1 forks source link

DefaultConvention uses Assembly.GetTypes unnecessarily #47

Closed bnordli closed 8 years ago

bnordli commented 8 years ago

DefaultConvention.HasMultipleImplementationInSameNamespace performs Assembly.GetTypes.Where(t => t.HasInterface(service)) to retrieve a list of implementing types.

It should instead use IImplementorFinder, which already knows about implementing types.

andersnygaard commented 8 years ago

Resolved with pull request #48