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 | 59 | 8/7/2026 |
| 10.0.76 | 60 | 8/6/2026 |
| 10.0.69 | 115 | 6/18/2026 |
| 9.0.69 | 121 | 6/18/2026 |
| 9.0.68 | 117 | 4/29/2026 |
| 9.0.67 | 119 | 4/24/2026 |
| 9.0.66 | 123 | 4/22/2026 |
| 9.0.65 | 116 | 4/16/2026 |
| 9.0.61 | 128 | 3/5/2026 |
| 9.0.60 | 237 | 11/25/2025 |
| 9.0.59 | 247 | 11/25/2025 |
| 8.0.60 | 226 | 11/25/2025 |
| 8.0.56 | 278 | 11/16/2025 |
| 7.0.60 | 221 | 11/25/2025 |
| 7.0.59 | 241 | 11/25/2025 |
| 7.0.56 | 276 | 11/16/2025 |
| 6.0.61 | 119 | 3/5/2026 |
| 6.0.60 | 241 | 11/25/2025 |
| 6.0.59 | 232 | 11/25/2025 |
| 6.0.56 | 269 | 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);
}
}