Tim Bussmann
Tim Bussmann
This issue is raised as an outcome of the discussion on this docs PR: https://github.com/Particular/docs.particular.net/pull/4489 The [writing style guidance](https://github.com/Particular/docs.particular.net#writing-style) docs states the following for "language preference": > For consistency, prefer...
When using the [Installer APIs](https://github.com/Particular/NServiceBus/pull/6563), the `EndpointConfiguration` can't be reused in the same process, e.g. ```c# await Installer.Setup(configuration); await Endpoint.Create(configuration); ``` does not work because the `EndpointConfiguration` tracks its usage...
With the new transport seam, the `TransportDefinition` type already moved from the old configuration style of using a `Settings` class defined in core with extension methods defined in the downstream...
pointed out by @ramonsmits: The `RegisterMessageMutator` is in the `NServiceBus.MessageMutator` namespace but as a public extension, it should be in the root `NServiceBus` namespace.
With the refactoring efforts around the hosting, receive and send components, a lot of workarounds had to be added for backwards compatibility. With the next major version, those workarounds can/should...
The `configurationBuilderCustomization` parameter which allows customization of the endpoint configuration in the `IEndpointSetupTemplate.GetConfiguration` method currently doesn't allow the customizations to use async code. This requires some code to use `GetAwaiter().GetResult`,...
Adds documentation for the new installer APIs introduced via https://github.com/Particular/NServiceBus/pull/6563 in NServiceBus 8.1. The core reference in the 8.1 csproj file is a reference to a local build since we...
We have two main documents describing hosting options: * https://docs.particular.net/nservicebus/hosting/ * https://docs.particular.net/nservicebus/hosting/selecting both pages contain similar content with some variation. The categorizations are a bit weird, for example: * it...
The [message lock renewal](https://docs.particular.net/transports/azure-service-bus/legacy/message-lock-renewal) functionalty from the legacy ASB transport has not been implemented in the ASBS transport. The [upgrade guide](https://docs.particular.net/transports/upgrades/asb-10toasbs-1) does not mention anything about this. Having some information...
This issue captures a set of failing tests that failed multiple builds during March 9. and March 14 (almost all on March 14). After that time, all the builds have...