diff --git a/LiteCharms.Abstractions/LiteCharms.Abstractions.csproj b/LiteCharms.Abstractions/LiteCharms.Abstractions.csproj index 3495944..7614de0 100644 --- a/LiteCharms.Abstractions/LiteCharms.Abstractions.csproj +++ b/LiteCharms.Abstractions/LiteCharms.Abstractions.csproj @@ -11,7 +11,7 @@ LiteCharms.Abstractions - 1.0.17 + 1.0.19 Khwezi Mngoma Lite Charms (PTY) Ltd Shared abstractions for Lite Charms applications. diff --git a/LiteCharms.Entities/LiteCharms.Entities.csproj b/LiteCharms.Entities/LiteCharms.Entities.csproj index 1e34e13..6def4d4 100644 --- a/LiteCharms.Entities/LiteCharms.Entities.csproj +++ b/LiteCharms.Entities/LiteCharms.Entities.csproj @@ -11,7 +11,7 @@ LiteCharms.Entities - 1.0.17 + 1.0.19 Khwezi Mngoma Lite Charms (PTY) Ltd Shared entities for Lite Charms applications. diff --git a/LiteCharms.Extensions/LiteCharms.Extensions.csproj b/LiteCharms.Extensions/LiteCharms.Extensions.csproj index 2eb0aa9..1e19321 100644 --- a/LiteCharms.Extensions/LiteCharms.Extensions.csproj +++ b/LiteCharms.Extensions/LiteCharms.Extensions.csproj @@ -22,7 +22,7 @@ LiteCharms.Extensions - 1.0.18 + 1.0.19 Khwezi Mngoma Lite Charms (PTY) Ltd Extension components for Lite Charms applications. diff --git a/LiteCharms.Extensions/ServiceBus.cs b/LiteCharms.Extensions/ServiceBus.cs index 7ffc0c2..e71c074 100644 --- a/LiteCharms.Extensions/ServiceBus.cs +++ b/LiteCharms.Extensions/ServiceBus.cs @@ -7,19 +7,19 @@ namespace LiteCharms.Extensions; public static class ServiceBus { public static IServiceCollection AddGeneralServiceBus(this IServiceCollection services) => services - .AddSingleton() + .AddTransient() .AddHostedService() .AddKeyedTransient(Constants.GeneralServiceBus) .AddMemoryCache(); public static IServiceCollection AddEmailServiceBus(this IServiceCollection services) => services - .AddSingleton() + .AddTransient() .AddHostedService() .AddKeyedTransient(Constants.EmailServiceBus) .AddMemoryCache(); public static IServiceCollection AddSalesServiceBus(this IServiceCollection services) => services - .AddSingleton() + .AddTransient() .AddHostedService() .AddKeyedTransient(Constants.SalesServiceBus) .AddMemoryCache(); diff --git a/LiteCharms.Features/LiteCharms.Features.csproj b/LiteCharms.Features/LiteCharms.Features.csproj index 17a6e9b..a0f6325 100644 --- a/LiteCharms.Features/LiteCharms.Features.csproj +++ b/LiteCharms.Features/LiteCharms.Features.csproj @@ -11,7 +11,7 @@ LiteCharms.Features - 1.0.17 + 1.0.19 Khwezi Mngoma Lite Charms (PTY) Ltd Feature components for Lite Charms applications. diff --git a/LiteCharms.Infrastructure/LiteCharms.Infrastructure.csproj b/LiteCharms.Infrastructure/LiteCharms.Infrastructure.csproj index a84c6b9..b18410a 100644 --- a/LiteCharms.Infrastructure/LiteCharms.Infrastructure.csproj +++ b/LiteCharms.Infrastructure/LiteCharms.Infrastructure.csproj @@ -12,7 +12,7 @@ LiteCharms.Infrastructure - 1.0.17 + 1.0.19 Khwezi Mngoma Lite Charms (PTY) Ltd Infrastructure components for Lite Charms applications. diff --git a/LiteCharms.Models/LiteCharms.Models.csproj b/LiteCharms.Models/LiteCharms.Models.csproj index 7384ca3..c3cd50b 100644 --- a/LiteCharms.Models/LiteCharms.Models.csproj +++ b/LiteCharms.Models/LiteCharms.Models.csproj @@ -11,7 +11,7 @@ LiteCharms.Models - 1.0.17 + 1.0.19 Khwezi Mngoma Lite Charms (PTY) Ltd Shared models for Lite Charms applications.