Skip to content

Commit

Permalink
Reflect name change in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroservienti committed Dec 15, 2023
1 parent 4ed19d0 commit 67ad016
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<img src="assets/icon.png" width="100" />

# Maddox.NServiceBus
# Mattox.NServiceBus

Maddox simplifies [NServiceBus endpoints](https://docs.particular.net/nservicebus/) configuration by providing for supported transports a corresponding Maddox endpoint with sensible defaults. For example, creating and starting a RabbitMQ endpoint could be as easy as:
Mattox simplifies [NServiceBus endpoints](https://docs.particular.net/nservicebus/) configuration by providing for supported transports a corresponding Mattox endpoint with sensible defaults. For example, creating and starting a RabbitMQ endpoint could be as easy as:

```csharp
var endpoint = new RabbitMqEndpoint("my-endpoint", connectionString: "host=localhost");
Expand All @@ -11,29 +11,29 @@ var endpointInstance = await endpoint.Start();

## Microsoft configuration extension support

Maddox.NServiceBus can be configured through the [`Microsoft.Extensions.Configuration`](https://www.nuget.org/packages/Microsoft.Extensions.Configuration). The above-presented RabbitMQ endpoint can be configured as follows:
Mattox.NServiceBus can be configured through the [`Microsoft.Extensions.Configuration`](https://www.nuget.org/packages/Microsoft.Extensions.Configuration). The above-presented RabbitMQ endpoint can be configured as follows:

```csharp
Host.CreateDefaultBuilder()
.UseNServiceBus(hostBuilderContext => new RabbitMqEndpoint(hostBuilderContext.Configuration))
.Build();
```

The endpoint will retrieve values from the `IConfiguration` object instance. For more information, refer to the [Maddox.NServiceBus configuration options docmentation](/docs).
The endpoint will retrieve values from the `IConfiguration` object instance. For more information, refer to the [Mattox.NServiceBus configuration options docmentation](/docs).

## Supported endpoints

- [Maddox.NServiceBus.AmazonSQS](https://github.com/mauroservienti/Maddox.NServiceBus.AmazonSQS)
- [Maddox.NServiceBus.RabbitMQ](https://github.com/mauroservienti/Maddox.NServiceBus.RabbitMQ)
- [Mattox.NServiceBus.AmazonSQS](https://github.com/mauroservienti/Mattox.NServiceBus.AmazonSQS)
- [Mattox.NServiceBus.RabbitMQ](https://github.com/mauroservienti/Mattox.NServiceBus.RabbitMQ)

## How to get it

- Pre-releases are available on [Feedz.io](https://feedz.io/) ([public feed](https://f.feedz.io/mauroservienti/pre-releases/nuget/index.json))
- Releases on [NuGet.org](https://www.nuget.org/packages?q=Maddox)
- Releases on [NuGet.org](https://www.nuget.org/packages?q=Mattox)

## NOTE

> This package is not meant to be used directly. It serves as a base package for other Maddox.NServiceBus Endpoints, such as [Maddox.NServiceBus.AmazonSQS](https://github.com/mauroservienti/Maddox.NServiceBus.AmazonSQS) or [Maddox.NServiceBus.Endpoints.RabbitMQ](https://github.com/mauroservienti/Maddox.NServiceBus.RabbitMQ).
> This package is not meant to be used directly. It serves as a base package for other Mattox.NServiceBus Endpoints, such as [Mattox.NServiceBus.AmazonSQS](https://github.com/mauroservienti/Mattox.NServiceBus.AmazonSQS) or [Mattox.NServiceBus.Endpoints.RabbitMQ](https://github.com/mauroservienti/Mattox.NServiceBus.RabbitMQ).
---

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Configuration

Maddox.NServiceBus endpoints can be configured through the [`Microsoft.Extensions.Configuration`](https://www.nuget.org/packages/Microsoft.Extensions.Configuration). All settings are defined in the `NServiceBus:EndpointConfiguration` section. Different endpoints supporting different transport may define additional settings. Refer to the endpoint-specific documentation for more details.
Mattox.NServiceBus endpoints can be configured through the [`Microsoft.Extensions.Configuration`](https://www.nuget.org/packages/Microsoft.Extensions.Configuration). All settings are defined in the `NServiceBus:EndpointConfiguration` section. Different endpoints supporting different transport may define additional settings. Refer to the endpoint-specific documentation for more details.

## Endpoint name

Expand Down

0 comments on commit 67ad016

Please sign in to comment.