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" />
paket add Bsa.Msa.DependencyInjection --version 9.0.38
#r "nuget: Bsa.Msa.DependencyInjection, 9.0.38"
// Install Bsa.Msa.DependencyInjection as a Cake Addin #addin nuget:?package=Bsa.Msa.DependencyInjection&version=9.0.38 // Install Bsa.Msa.DependencyInjection as a Cake Tool #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 | 198 | 3/5/2025 |
9.0.35 | 203 | 3/3/2025 |
9.0.34 | 82 | 3/2/2025 |
9.0.33 | 86 | 3/1/2025 |
9.0.32 | 95 | 2/15/2025 |
9.0.31 | 99 | 2/12/2025 |
8.0.38 | 191 | 3/5/2025 |
8.0.35 | 197 | 3/3/2025 |
8.0.32 | 86 | 2/15/2025 |
8.0.31 | 97 | 2/12/2025 |
7.0.38 | 187 | 3/5/2025 |
7.0.35 | 192 | 3/3/2025 |
7.0.32 | 86 | 2/15/2025 |
7.0.31 | 89 | 2/12/2025 |
6.0.38 | 197 | 3/4/2025 |
6.0.35 | 196 | 3/3/2025 |
6.0.34 | 155 | 3/2/2025 |
6.0.33 | 90 | 3/1/2025 |
6.0.32 | 100 | 2/13/2025 |
6.0.31 | 91 | 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);
}
}