Bsa.Msa.DependencyInjection
10.0.78
dotnet add package Bsa.Msa.DependencyInjection --version 10.0.78
NuGet\Install-Package Bsa.Msa.DependencyInjection -Version 10.0.78
<PackageReference Include="Bsa.Msa.DependencyInjection" Version="10.0.78" />
<PackageVersion Include="Bsa.Msa.DependencyInjection" Version="10.0.78" />
<PackageReference Include="Bsa.Msa.DependencyInjection" />
paket add Bsa.Msa.DependencyInjection --version 10.0.78
#r "nuget: Bsa.Msa.DependencyInjection, 10.0.78"
#:package Bsa.Msa.DependencyInjection@10.0.78
#addin nuget:?package=Bsa.Msa.DependencyInjection&version=10.0.78
#tool nuget:?package=Bsa.Msa.DependencyInjection&version=10.0.78
integrating Autofac with MSA Bsa.Msa.RabbitMq.Core
http://bsasearch.org/msa.html
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Bsa.Msa.RabbitMq.Core (>= 10.0.78)
- Microsoft.Extensions.Hosting (>= 10.0.10)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.78 | 103 | 8/7/2026 |
| 10.0.76 | 97 | 8/6/2026 |
| 10.0.69 | 122 | 6/18/2026 |
| 9.0.69 | 128 | 6/18/2026 |
| 9.0.68 | 119 | 4/29/2026 |
| 9.0.67 | 121 | 4/24/2026 |
| 9.0.66 | 126 | 4/22/2026 |
| 9.0.65 | 119 | 4/16/2026 |
| 9.0.61 | 133 | 3/5/2026 |
| 9.0.60 | 240 | 11/25/2025 |
| 9.0.59 | 252 | 11/25/2025 |
| 8.0.60 | 230 | 11/25/2025 |
| 8.0.56 | 284 | 11/16/2025 |
| 7.0.60 | 225 | 11/25/2025 |
| 7.0.59 | 245 | 11/25/2025 |
| 7.0.56 | 280 | 11/16/2025 |
| 6.0.61 | 123 | 3/5/2026 |
| 6.0.60 | 245 | 11/25/2025 |
| 6.0.59 | 236 | 11/25/2025 |
| 6.0.56 | 273 | 11/16/2025 |
Added async message handler
public sealed class EmptyMessageHandlerAsync : IMessageHandlerAsync<EmptyMessage>
{
private readonly IBusManager _busManager;
private readonly ISettings _settings;
public EmptyMessageHandlerAsync(IBusManager busManager, ISettings settings)
{
this._busManager = busManager;
this._settings = settings;
}
public async Task HandleAsync(EmptyMessage message)
{
Console.Write($"Processed: {JsonConvert.SerializeObject(message)}");
await Task.Delay(1000);
}
}