Bsa.Msa.DependencyInjection
10.0.69
dotnet add package Bsa.Msa.DependencyInjection --version 10.0.69
NuGet\Install-Package Bsa.Msa.DependencyInjection -Version 10.0.69
<PackageReference Include="Bsa.Msa.DependencyInjection" Version="10.0.69" />
<PackageVersion Include="Bsa.Msa.DependencyInjection" Version="10.0.69" />
<PackageReference Include="Bsa.Msa.DependencyInjection" />
paket add Bsa.Msa.DependencyInjection --version 10.0.69
#r "nuget: Bsa.Msa.DependencyInjection, 10.0.69"
#:package Bsa.Msa.DependencyInjection@10.0.69
#addin nuget:?package=Bsa.Msa.DependencyInjection&version=10.0.69
#tool nuget:?package=Bsa.Msa.DependencyInjection&version=10.0.69
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.69)
- Microsoft.Extensions.Hosting (>= 10.0.9)
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.69 | 105 | 6/18/2026 |
| 9.0.69 | 104 | 6/18/2026 |
| 9.0.68 | 114 | 4/29/2026 |
| 9.0.67 | 115 | 4/24/2026 |
| 9.0.66 | 118 | 4/22/2026 |
| 9.0.65 | 113 | 4/16/2026 |
| 9.0.61 | 125 | 3/5/2026 |
| 9.0.60 | 231 | 11/25/2025 |
| 9.0.59 | 242 | 11/25/2025 |
| 9.0.56 | 271 | 11/16/2025 |
| 8.0.60 | 222 | 11/25/2025 |
| 8.0.56 | 274 | 11/16/2025 |
| 8.0.54 | 268 | 11/16/2025 |
| 7.0.60 | 218 | 11/25/2025 |
| 7.0.59 | 235 | 11/25/2025 |
| 7.0.56 | 273 | 11/16/2025 |
| 6.0.61 | 116 | 3/5/2026 |
| 6.0.60 | 237 | 11/25/2025 |
| 6.0.59 | 227 | 11/25/2025 |
| 6.0.56 | 265 | 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);
}
}