Bsa.Msa.SC
9.0.67
See the version list below for details.
dotnet add package Bsa.Msa.SC --version 9.0.67
NuGet\Install-Package Bsa.Msa.SC -Version 9.0.67
<PackageReference Include="Bsa.Msa.SC" Version="9.0.67" />
<PackageVersion Include="Bsa.Msa.SC" Version="9.0.67" />
<PackageReference Include="Bsa.Msa.SC" />
paket add Bsa.Msa.SC --version 9.0.67
#r "nuget: Bsa.Msa.SC, 9.0.67"
#:package Bsa.Msa.SC@9.0.67
#addin nuget:?package=Bsa.Msa.SC&version=9.0.67
#tool nuget:?package=Bsa.Msa.SC&version=9.0.67
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.67)
- 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.68 | 100 | 4/29/2026 |
| 9.0.67 | 108 | 4/24/2026 |
| 9.0.66 | 109 | 4/22/2026 |
| 9.0.65 | 106 | 4/16/2026 |
| 9.0.61 | 121 | 3/13/2026 |
| 9.0.38 | 3,564 | 3/5/2025 |
| 9.0.31 | 1,361 | 2/12/2025 |
| 9.0.30 | 1,324 | 2/12/2025 |
| 9.0.29 | 1,308 | 2/12/2025 |
| 8.0.38 | 3,507 | 3/5/2025 |
| 8.0.31 | 1,331 | 2/12/2025 |
| 8.0.30 | 1,320 | 2/12/2025 |
| 7.0.38 | 3,498 | 3/5/2025 |
| 7.0.31 | 1,315 | 2/12/2025 |
| 7.0.30 | 1,318 | 2/12/2025 |
| 6.0.61 | 121 | 3/5/2026 |
| 6.0.60 | 1,350 | 11/25/2025 |
| 6.0.38 | 3,512 | 3/5/2025 |
| 6.0.31 | 1,307 | 2/12/2025 |
| 6.0.30 | 1,340 | 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);
}
}