Bsa.Msa.SC
10.0.69
dotnet add package Bsa.Msa.SC --version 10.0.69
NuGet\Install-Package Bsa.Msa.SC -Version 10.0.69
<PackageReference Include="Bsa.Msa.SC" Version="10.0.69" />
<PackageVersion Include="Bsa.Msa.SC" Version="10.0.69" />
<PackageReference Include="Bsa.Msa.SC" />
paket add Bsa.Msa.SC --version 10.0.69
#r "nuget: Bsa.Msa.SC, 10.0.69"
#:package Bsa.Msa.SC@10.0.69
#addin nuget:?package=Bsa.Msa.SC&version=10.0.69
#tool nuget:?package=Bsa.Msa.SC&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 | 103 | 6/18/2026 |
| 9.0.69 | 110 | 6/18/2026 |
| 9.0.68 | 127 | 4/29/2026 |
| 9.0.67 | 137 | 4/24/2026 |
| 9.0.66 | 138 | 4/22/2026 |
| 9.0.65 | 134 | 4/16/2026 |
| 9.0.61 | 147 | 3/13/2026 |
| 9.0.38 | 3,590 | 3/5/2025 |
| 9.0.31 | 1,386 | 2/12/2025 |
| 8.0.38 | 3,532 | 3/5/2025 |
| 8.0.31 | 1,358 | 2/12/2025 |
| 8.0.30 | 1,347 | 2/12/2025 |
| 7.0.38 | 3,524 | 3/5/2025 |
| 7.0.31 | 1,340 | 2/12/2025 |
| 7.0.30 | 1,346 | 2/12/2025 |
| 6.0.61 | 150 | 3/5/2026 |
| 6.0.60 | 1,377 | 11/25/2025 |
| 6.0.38 | 3,536 | 3/5/2025 |
| 6.0.31 | 1,335 | 2/12/2025 |
| 6.0.30 | 1,367 | 2/12/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);
}
}