Bsa.Msa.SC
9.0.65
See the version list below for details.
dotnet add package Bsa.Msa.SC --version 9.0.65
NuGet\Install-Package Bsa.Msa.SC -Version 9.0.65
<PackageReference Include="Bsa.Msa.SC" Version="9.0.65" />
<PackageVersion Include="Bsa.Msa.SC" Version="9.0.65" />
<PackageReference Include="Bsa.Msa.SC" />
paket add Bsa.Msa.SC --version 9.0.65
#r "nuget: Bsa.Msa.SC, 9.0.65"
#:package Bsa.Msa.SC@9.0.65
#addin nuget:?package=Bsa.Msa.SC&version=9.0.65
#tool nuget:?package=Bsa.Msa.SC&version=9.0.65
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.65)
- 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 | 98 | 4/29/2026 |
| 9.0.67 | 106 | 4/24/2026 |
| 9.0.66 | 107 | 4/22/2026 |
| 9.0.65 | 105 | 4/16/2026 |
| 9.0.61 | 121 | 3/13/2026 |
| 9.0.38 | 3,563 | 3/5/2025 |
| 9.0.31 | 1,360 | 2/12/2025 |
| 9.0.30 | 1,323 | 2/12/2025 |
| 9.0.29 | 1,307 | 2/12/2025 |
| 8.0.38 | 3,506 | 3/5/2025 |
| 8.0.31 | 1,330 | 2/12/2025 |
| 8.0.30 | 1,319 | 2/12/2025 |
| 7.0.38 | 3,497 | 3/5/2025 |
| 7.0.31 | 1,314 | 2/12/2025 |
| 7.0.30 | 1,317 | 2/12/2025 |
| 6.0.61 | 121 | 3/5/2026 |
| 6.0.60 | 1,350 | 11/25/2025 |
| 6.0.38 | 3,511 | 3/5/2025 |
| 6.0.31 | 1,306 | 2/12/2025 |
| 6.0.30 | 1,339 | 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);
}
}