Dennis van der Stelt

Results 17 comments of Dennis van der Stelt

It needs to be a code change, not possible via config alone, from what I can see.

It is indeed a hyperlink. In my case to a different repo in within the same organization.

Hi @lillo42, I'm not sure I understand the question. Sagas are invoked [using a dependency injection container](https://docs.particular.net/nservicebus/dependency-injection/). Is that what you're referring to? Then any parameter in the constructor of...

I understand now what you're looking for. The `ConfigureHowToFindSaga` is intended to _only_ configure the mappings. It should not be used for anything else. If you're doing conditional mapping, the...

Automatonymous seems to be a state machine, something a saga could be seen as, as well. It feels like you're overcomplicating things by combining those two, or I am lacking...

For book-keeping, I'm referencing the public issue in Metrics repo : https://github.com/Particular/NServiceBus.Metrics/issues/74

We have ExcludeAssemblies at the moment: https://docs.particular.net/nservicebus/hosting/assembly-scanning#exclude-a-list-approach-exclude-specific-assemblies-by-name But we used to have IncludeAssmblies. Maybe bring that back?! :-)

Hey @jgauffin, thanks for the feedback so far. We do more than add (and scan) assemblies for handlers though. Also sagas, messages and more. Do you think `endpointConfiguration.AssemblyScanner().AddAssembly(..)` or `endpointConfiguration.AssemblyScanner().IncludeAssemblies(..)`...

> We cannot determine the routing infrastructure ahead of the time, since all the batch job descriptions is just passed through one big "ExecuteJob" command. It would be a horrible...

We considered that, but the namespaces were different in every single project. That's why we dismissed it as a solution. However later on we discovered it would be impossible for...