If you have the StructureMap.MVC5 nuget package installed, and update the structuremap nuget package, the ControllerConvention class will require you to implement the ScanTypes method (from an updated IRegistrationConvention interface). This is the method signature:
public void ScanTypes(TypeSet types, Registry registry)
So my question is,
- will there be an updated release to the StructureMap.MVC5 nuget package?
- how should I implement the method?
Thanks.