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 | 83 | 6/18/2026 |
| 9.0.69 | 87 | 6/18/2026 |
| 9.0.68 | 109 | 4/29/2026 |
| 9.0.67 | 111 | 4/24/2026 |
| 9.0.66 | 111 | 4/22/2026 |
| 9.0.65 | 109 | 4/16/2026 |
| 9.0.61 | 119 | 3/5/2026 |
| 9.0.60 | 226 | 11/25/2025 |
| 9.0.59 | 238 | 11/25/2025 |
| 9.0.56 | 264 | 11/16/2025 |
| 8.0.60 | 216 | 11/25/2025 |
| 8.0.56 | 267 | 11/16/2025 |
| 8.0.54 | 261 | 11/16/2025 |
| 7.0.60 | 212 | 11/25/2025 |
| 7.0.59 | 228 | 11/25/2025 |
| 7.0.56 | 266 | 11/16/2025 |
| 6.0.61 | 108 | 3/5/2026 |
| 6.0.60 | 229 | 11/25/2025 |
| 6.0.59 | 223 | 11/25/2025 |
| 6.0.56 | 260 | 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);
}
}