Bsa.Msa.DependencyInjection
9.0.38
dotnet add package Bsa.Msa.DependencyInjection --version 9.0.38
NuGet\Install-Package Bsa.Msa.DependencyInjection -Version 9.0.38
<PackageReference Include="Bsa.Msa.DependencyInjection" Version="9.0.38" />
<PackageVersion Include="Bsa.Msa.DependencyInjection" Version="9.0.38" />
<PackageReference Include="Bsa.Msa.DependencyInjection" />
paket add Bsa.Msa.DependencyInjection --version 9.0.38
#r "nuget: Bsa.Msa.DependencyInjection, 9.0.38"
#addin nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.38
#tool nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.38
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. |
-
net9.0
- Bsa.Msa.RabbitMq.Core (>= 9.0.38)
- Microsoft.Extensions.Hosting (>= 9.0.2)
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.38 | 201 | 3/5/2025 |
9.0.35 | 205 | 3/3/2025 |
9.0.34 | 86 | 3/2/2025 |
9.0.33 | 89 | 3/1/2025 |
9.0.32 | 98 | 2/15/2025 |
9.0.31 | 102 | 2/12/2025 |
8.0.38 | 194 | 3/5/2025 |
8.0.35 | 200 | 3/3/2025 |
8.0.32 | 89 | 2/15/2025 |
8.0.31 | 100 | 2/12/2025 |
7.0.38 | 190 | 3/5/2025 |
7.0.35 | 195 | 3/3/2025 |
7.0.32 | 89 | 2/15/2025 |
7.0.31 | 92 | 2/12/2025 |
6.0.38 | 202 | 3/4/2025 |
6.0.35 | 199 | 3/3/2025 |
6.0.34 | 159 | 3/2/2025 |
6.0.33 | 93 | 3/1/2025 |
6.0.32 | 103 | 2/13/2025 |
6.0.31 | 94 | 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);
}
}