Bsa.Msa.DependencyInjection
9.0.61
dotnet add package Bsa.Msa.DependencyInjection --version 9.0.61
NuGet\Install-Package Bsa.Msa.DependencyInjection -Version 9.0.61
<PackageReference Include="Bsa.Msa.DependencyInjection" Version="9.0.61" />
<PackageVersion Include="Bsa.Msa.DependencyInjection" Version="9.0.61" />
<PackageReference Include="Bsa.Msa.DependencyInjection" />
paket add Bsa.Msa.DependencyInjection --version 9.0.61
#r "nuget: Bsa.Msa.DependencyInjection, 9.0.61"
#:package Bsa.Msa.DependencyInjection@9.0.61
#addin nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.61
#tool nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.61
integrating Autofac with MSA Bsa.Msa.RabbitMq.Core
http://bsasearch.org/msa.html
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
-
net9.0
- Bsa.Msa.RabbitMq.Core (>= 9.0.61)
- Microsoft.Extensions.Hosting (>= 9.0.13)
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 |
|---|---|---|
| 9.0.61 | 87 | 3/5/2026 |
| 9.0.60 | 212 | 11/25/2025 |
| 9.0.59 | 218 | 11/25/2025 |
| 9.0.56 | 246 | 11/16/2025 |
| 9.0.54 | 250 | 11/16/2025 |
| 9.0.48 | 214 | 10/6/2025 |
| 8.0.60 | 201 | 11/25/2025 |
| 8.0.56 | 248 | 11/16/2025 |
| 8.0.54 | 246 | 11/16/2025 |
| 7.0.60 | 195 | 11/25/2025 |
| 7.0.59 | 207 | 11/25/2025 |
| 7.0.56 | 248 | 11/16/2025 |
| 7.0.54 | 245 | 11/16/2025 |
| 6.0.61 | 78 | 3/5/2026 |
| 6.0.60 | 207 | 11/25/2025 |
| 6.0.59 | 207 | 11/25/2025 |
| 6.0.56 | 239 | 11/16/2025 |
| 6.0.54 | 255 | 11/16/2025 |
| 6.0.48 | 194 | 10/6/2025 |
| 6.0.47 | 211 | 9/9/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);
}
}