Bsa.Msa.SC
8.0.20
See the version list below for details.
dotnet add package Bsa.Msa.SC --version 8.0.20
NuGet\Install-Package Bsa.Msa.SC -Version 8.0.20
<PackageReference Include="Bsa.Msa.SC" Version="8.0.20" />
paket add Bsa.Msa.SC --version 8.0.20
#r "nuget: Bsa.Msa.SC, 8.0.20"
// Install Bsa.Msa.SC as a Cake Addin #addin nuget:?package=Bsa.Msa.SC&version=8.0.20 // Install Bsa.Msa.SC as a Cake Tool #tool nuget:?package=Bsa.Msa.SC&version=8.0.20
integrating Autofac with MSA Bsa.Msa.RabbitMq.Core
http://bsasearch.org/msa.html
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. 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. |
-
net8.0
- Bsa.Msa.RabbitMq.Core (>= 8.0.20)
- Microsoft.Extensions.Hosting (>= 8.0.1)
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.31 | 37 | 2/12/2025 |
9.0.30 | 38 | 2/12/2025 |
9.0.29 | 33 | 2/12/2025 |
9.0.25 | 39 | 2/12/2025 |
9.0.21 | 32 | 2/12/2025 |
9.0.20 | 43 | 2/12/2025 |
8.0.31 | 30 | 2/12/2025 |
8.0.30 | 34 | 2/12/2025 |
8.0.29 | 37 | 2/12/2025 |
8.0.25 | 34 | 2/12/2025 |
8.0.21 | 34 | 2/12/2025 |
8.0.20 | 31 | 2/12/2025 |
7.0.31 | 36 | 2/12/2025 |
7.0.30 | 33 | 2/12/2025 |
7.0.29 | 36 | 2/12/2025 |
7.0.25 | 32 | 2/12/2025 |
7.0.21 | 33 | 2/12/2025 |
7.0.20 | 33 | 2/12/2025 |
6.0.31 | 33 | 2/12/2025 |
6.0.30 | 42 | 2/12/2025 |
6.0.29 | 34 | 2/12/2025 |
6.0.28 | 30 | 2/12/2025 |
6.0.26 | 32 | 2/12/2025 |
6.0.25 | 37 | 2/12/2025 |
6.0.24 | 33 | 2/12/2025 |
6.0.22 | 37 | 2/12/2025 |
6.0.21 | 34 | 2/12/2025 |
6.0.20 | 36 | 2/12/2025 |
private static void ConfigureServices(IServiceCollection services)
{
services.InstallServices();
services.AddHostedService<ServiceHost>();
services.AddHttpClient();
}
public sealed class ServiceHost : IHostedService, IDisposable
{
private readonly IServiceUnitManager _serviceUnitManager;
public ServiceHost(IServiceUnitManager serviceUnitManager)
{
this._serviceUnitManager = serviceUnitManager;
}
public Task StartAsync(CancellationToken cancellationToken)
{
//serviceProvider.InstallHandlers();
_serviceUnitManager.Start();
return Task.CompletedTask;
}
public Task StopAsync(CancellationToken cancellationToken)
{
_serviceUnitManager.Stop();
return Task.CompletedTask;
}
public void Dispose()
{
_serviceUnitManager?.Stop();
}
}