I have a NancyFx project that references another project that contains all my FluentValidation AbstractValidator instances.
That validation project also references NancyFx.Validation.FluentValidation, however none of the Validators I placed in there are picked up by NancyFx when calling BindToAndValidate - the model is always Valid even though.. well.. it is not (according to the corresponding AbstractValidator logic).
Apparently the module's / NancyFx ValidatorLocator does not pick up those separate validators automatically but is there any way (bootstrapper or so) to tell NancyFx to also scan that separate validation assembly? And/or am I missing something here?