Pipoburgos.SharedKernel.Infrastructure 9.0.8.2

dotnet add package Pipoburgos.SharedKernel.Infrastructure --version 9.0.8.2
                    
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 9.0.8.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Pipoburgos.SharedKernel.Infrastructure" Version="9.0.8.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pipoburgos.SharedKernel.Infrastructure" Version="9.0.8.2" />
                    
Directory.Packages.props
<PackageReference Include="Pipoburgos.SharedKernel.Infrastructure" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Pipoburgos.SharedKernel.Infrastructure --version 9.0.8.2
                    
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 9.0.8.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Pipoburgos.SharedKernel.Infrastructure@9.0.8.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.8.2
                    
Install as a Cake Addin
#tool nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.8.2
                    
Install as a Cake Tool

The following code demonstrates basic usage of Shared Kernel Infastructure.

namespace XXX.Infrastructure;

public static class XXXModule
{
    public static IServiceCollection AddSharedKernelXXXModule(this IServiceCollection services,
        IConfiguration configuration, string connectionStringName)
    {
        return services
            .AddSharedKernel()
            .AddInMemoryCache()
            .AddDomainEventsSubscribers(typeof(InfrastructureAssembly), typeof(DomainAssembly)
            .AddCommandsHandlers(typeof(ApplicationAssembly))
            .AddInMemoryCommandBus()
            .AddQueriesHandlers(typeof(InfrastructureAssembly))
            .AddInMemoryQueryBus()
            .AddActiveDirectory()
            .AddApplicationServices()
            .AddDomainServices()
            .AddRepositories();
    }

    private static IServiceCollection AddApplicationServices(this IServiceCollection services)
    {
        return services
            .AddTransient<SampleApplicationService>();
    }
        
    private static IServiceCollection AddDomainServices(this IServiceCollection services)
    {
        return services
            .AddTransient<SampleDomainService>();
    }

    private static IServiceCollection AddRepositories(this IServiceCollection services)
    {
        return services
            .AddTransient<IXXXRepository, XXXMongoRepository>();
            .AddTransient<IXXXRepository, XXXEntityFrameworkCoreRepository>();
    }
}

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (13)

Showing the top 5 NuGet packages that depend on Pipoburgos.SharedKernel.Infrastructure:

Package Downloads
Pipoburgos.SharedKernel.Api

C# DDD Distributed Services Layer

Pipoburgos.SharedKernel.Infrastructure.EntityFrameworkCore

EntityFrameworkCore infrastructure implementations

Pipoburgos.SharedKernel.Infrastructure.ActiveMq

ActiveMq infrastructure implementations

Pipoburgos.SharedKernel.Infrastructure.NPOI

NPOI infrastructure implementations

Pipoburgos.SharedKernel.Infrastructure.DotNetDBF

DotNetDBF infrastructure implementations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.0.8.2 757 8/20/2025
9.0.8.1 830 8/6/2025
9.0.7.1 752 7/9/2025
9.0.6.1 764 6/16/2025
9.0.5.1 762 6/4/2025
9.0.4.2 741 5/7/2025
9.0.4.1 753 5/7/2025
9.0.3.3 766 4/6/2025
9.0.3.2 1,101 3/26/2025
9.0.3.1 710 3/17/2025
9.0.2.1 820 2/12/2025
9.0.0.5 917 12/4/2024
9.0.0.4 853 12/2/2024
9.0.0.3 809 11/27/2024
9.0.0.2 764 11/17/2024
9.0.0.1 832 11/16/2024
8.0.10.3 764 11/5/2024
8.0.10.2 686 11/1/2024
8.0.10.1 885 10/16/2024
8.0.7.3 726 7/27/2024
8.0.7.2 800 7/15/2024
8.0.6.2 817 6/5/2024
8.0.6.1 866 5/30/2024
8.0.5.1 824 5/14/2024
8.0.4.8 900 5/11/2024
8.0.4.7 833 5/1/2024
8.0.4.6 837 4/29/2024
8.0.4.5 845 4/27/2024
8.0.4.4 863 4/27/2024
8.0.4.3 879 4/26/2024
8.0.4.2 815 4/26/2024
8.0.4.1 861 4/20/2024
8.0.3.5 956 3/25/2024
8.0.3.4 988 3/14/2024
8.0.3.3 876 3/14/2024
8.0.3.2 900 3/13/2024
8.0.3.1 972 3/13/2024
8.0.2.6 956 2/15/2024
8.0.2.5 1,009 2/15/2024
8.0.2.4 1,002 2/15/2024
8.0.2.3 959 2/14/2024
8.0.2.2 1,008 2/14/2024
8.0.2.1 976 2/14/2024
8.0.0.8 1,043 1/29/2024
8.0.0.7 973 1/26/2024
8.0.0.6 991 1/26/2024
8.0.0.5 1,047 1/16/2024
8.0.0.4 1,096 12/29/2023
8.0.0.3 1,122 12/21/2023
8.0.0.2 1,094 12/13/2023
8.0.0.2-rc.3 178 10/25/2023
8.0.0.2-rc.2 103 10/6/2023
8.0.0.1 1,071 11/19/2023
8.0.0.1-rc.1 132 9/25/2023
8.0.0 1,038 11/15/2023
7.3.13.1 1,097 10/25/2023
7.3.11.4 1,162 10/9/2023
7.3.11.3 1,119 10/5/2023
7.3.11.2 1,162 9/21/2023
7.3.11.1 1,171 9/13/2023
7.3.10.1 1,270 9/11/2023
7.2.10.3 1,262 9/6/2023
7.2.10.2 1,309 9/1/2023
7.2.10.1 1,173 8/29/2023
7.1.10.5 1,177 8/24/2023
7.1.10.4 1,140 8/23/2023
7.1.10.3 1,330 8/20/2023
7.1.10.2 1,334 8/20/2023
7.1.10.1 1,328 8/20/2023
7.0.10.4 1,671 8/18/2023
7.0.10.3 316 8/17/2023
7.0.10.2 323 8/16/2023
7.0.10.1 334 8/9/2023
7.0.9.3 326 8/2/2023
7.0.9.2 318 8/2/2023
7.0.9.1 299 8/2/2023
7.0.8.2 342 7/11/2023
7.0.8.1 389 6/27/2023
7.0.7.3 347 6/21/2023
7.0.7.2 349 6/19/2023
7.0.7.1 378 6/14/2023
7.0.5.11 371 6/13/2023
7.0.5.10 308 6/12/2023
7.0.5.9 367 6/12/2023
7.0.5.8 368 5/26/2023
7.0.5.7 373 5/26/2023
7.0.5.6 339 5/22/2023
7.0.5.5 361 5/18/2023
7.0.5.4 388 5/18/2023
7.0.5.3 456 4/22/2023
7.0.5.2 403 4/13/2023
7.0.5.1 403 4/13/2023
7.0.5 420 4/13/2023
7.0.4 485 3/30/2023
7.0.3 512 3/6/2023
7.0.2 597 2/2/2023
7.0.1 585 12/19/2022
7.0.0 805 11/14/2022
6.0.54 833 10/21/2022
6.0.53 838 10/20/2022
6.0.52 852 10/6/2022
6.0.51 818 10/5/2022
6.0.50 866 9/30/2022
6.0.49 912 9/27/2022
6.0.48 880 9/22/2022
6.0.47 934 9/20/2022
6.0.46 958 8/27/2022
6.0.45 944 8/26/2022
6.0.44 923 8/26/2022
6.0.43 963 8/23/2022
6.0.42 895 8/23/2022
6.0.41 956 8/16/2022
6.0.40 962 8/16/2022
6.0.39 956 8/4/2022
6.0.38 952 8/4/2022
6.0.37 968 8/4/2022
6.0.36 953 8/4/2022
6.0.35 944 8/4/2022
6.0.34 1,002 8/3/2022
6.0.33 938 8/3/2022
6.0.32 1,011 8/3/2022
6.0.31 958 8/3/2022
6.0.29 1,008 7/22/2022
6.0.28 990 7/14/2022
6.0.27 1,003 7/12/2022
6.0.26 1,001 7/12/2022
6.0.25 998 6/23/2022
6.0.24 1,035 6/23/2022
6.0.23 1,006 6/22/2022
6.0.22 1,012 6/22/2022
6.0.21 1,008 6/21/2022
6.0.20 1,086 5/26/2022
6.0.19 1,019 5/13/2022
6.0.17 1,087 5/10/2022
6.0.16 1,066 4/27/2022
6.0.15 1,129 3/18/2022
6.0.14 1,094 3/16/2022
6.0.13 1,204 2/25/2022
6.0.12 1,105 2/25/2022
6.0.11 1,201 2/2/2022
6.0.10 1,146 1/24/2022
6.0.9 1,191 1/24/2022
6.0.8 1,165 1/24/2022
6.0.7 1,179 1/24/2022
6.0.6 1,132 1/20/2022
6.0.5 1,183 1/19/2022
6.0.4 939 12/30/2021
6.0.3 1,010 12/14/2021
6.0.2 1,004 12/14/2021
6.0.1 1,072 11/30/2021
6.0.0 2,789 11/26/2021
6.0.0-rc3 399 11/16/2021
6.0.0-rc2 410 11/15/2021
6.0.0-rc1 558 11/10/2021
5.0.41 987 10/31/2021
5.0.40 951 10/20/2021
5.0.39 940 10/8/2021
5.0.35 982 10/6/2021
5.0.34 985 10/6/2021
5.0.33 961 10/5/2021
5.0.32 885 10/5/2021
5.0.31 941 10/4/2021
5.0.30 855 10/4/2021
5.0.29 1,067 10/2/2021
5.0.28 985 10/2/2021
5.0.27 918 10/2/2021
5.0.26 869 10/2/2021
5.0.25 943 9/28/2021
5.0.24 906 9/22/2021
5.0.23 1,039 9/11/2021
5.0.22 1,007 9/10/2021
5.0.21 922 8/29/2021
5.0.20 924 8/9/2021
5.0.19 1,002 7/21/2021
5.0.18 1,072 1/10/2021
5.0.17 1,016 12/30/2020
5.0.16 1,023 12/21/2020
5.0.15 1,035 12/19/2020
5.0.14 1,047 12/19/2020
5.0.13 1,082 12/18/2020
5.0.12 1,014 12/12/2020
5.0.11 979 12/10/2020
5.0.10 1,011 12/9/2020
5.0.9 879 12/9/2020
5.0.8 908 12/9/2020
5.0.7 971 12/9/2020
5.0.6 1,020 12/7/2020
5.0.5 940 12/7/2020
5.0.4 965 12/7/2020
5.0.3 1,019 11/24/2020
5.0.2 1,011 11/24/2020
5.0.1 946 11/18/2020
5.0.0 991 11/14/2020