Question

I want the ConfigurableBootstrapper to discover all my modules rather than have to list them all. I cant find the property for this. I dont want to have to list the type array explicitly

  var bootstrapper = new ConfigurableBootstrapper(with =>
            {
                with.Modules(new Type[] {typeof (CompanyModule), typeof (UserModule)});
                with.Dependency<IDocumentSession>(RavenEmbeddedStore.Instance.Store.OpenSession());
            });
Was it helpful?

Solution

It seems like AllDiscoveredModules() is the method you need:

var bootstrapper = new ConfigurableBootstrapper(with =>
        {
            with.AllDiscoveredModules();
            ...
        });
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top