Pipoburgos.SharedKernel.Infrastructure 9.0.6.1

dotnet add package Pipoburgos.SharedKernel.Infrastructure --version 9.0.6.1
                    
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 9.0.6.1
                    
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.6.1" />
                    
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.6.1" />
                    
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.6.1
                    
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 9.0.6.1"
                    
#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.
#addin nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.6.1
                    
Install as a Cake Addin
#tool nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.6.1
                    
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.ActiveMq

ActiveMq infrastructure implementations

Pipoburgos.SharedKernel.Infrastructure.EntityFrameworkCore

EntityFrameworkCore 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.6.1 396 6/16/2025
9.0.5.1 381 6/4/2025
9.0.4.2 413 5/7/2025
9.0.4.1 389 5/7/2025
9.0.3.3 391 4/6/2025
9.0.3.2 726 3/26/2025
9.0.3.1 379 3/17/2025
9.0.2.1 459 2/12/2025
9.0.0.5 595 12/4/2024
9.0.0.4 478 12/2/2024
9.0.0.3 469 11/27/2024
9.0.0.2 413 11/17/2024
9.0.0.1 485 11/16/2024
8.0.10.3 457 11/5/2024
8.0.10.2 421 11/1/2024
8.0.10.1 525 10/16/2024
8.0.7.3 403 7/27/2024
8.0.7.2 499 7/15/2024
8.0.6.2 515 6/5/2024
8.0.6.1 551 5/30/2024
8.0.5.1 507 5/14/2024
8.0.4.8 566 5/11/2024
8.0.4.7 537 5/1/2024
8.0.4.6 514 4/29/2024
8.0.4.5 539 4/27/2024
8.0.4.4 545 4/27/2024
8.0.4.3 574 4/26/2024
8.0.4.2 520 4/26/2024
8.0.4.1 564 4/20/2024
8.0.3.5 655 3/25/2024
8.0.3.4 645 3/14/2024
8.0.3.3 592 3/14/2024
8.0.3.2 541 3/13/2024
8.0.3.1 614 3/13/2024
8.0.2.6 653 2/15/2024
8.0.2.5 690 2/15/2024
8.0.2.4 665 2/15/2024
8.0.2.3 646 2/14/2024
8.0.2.2 700 2/14/2024
8.0.2.1 626 2/14/2024
8.0.0.8 755 1/29/2024
8.0.0.7 634 1/26/2024
8.0.0.6 655 1/26/2024
8.0.0.5 701 1/16/2024
8.0.0.4 764 12/29/2023
8.0.0.3 772 12/21/2023
8.0.0.2 753 12/13/2023
8.0.0.2-rc.3 156 10/25/2023
8.0.0.2-rc.2 81 10/6/2023
8.0.0.1 788 11/19/2023
8.0.0.1-rc.1 92 9/25/2023
8.0.0 775 11/15/2023
7.3.13.1 804 10/25/2023
7.3.11.4 850 10/9/2023
7.3.11.3 792 10/5/2023
7.3.11.2 882 9/21/2023
7.3.11.1 892 9/13/2023
7.3.10.1 968 9/11/2023
7.2.10.3 959 9/6/2023
7.2.10.2 986 9/1/2023
7.2.10.1 902 8/29/2023
7.1.10.5 896 8/24/2023
7.1.10.4 878 8/23/2023
7.1.10.3 1,057 8/20/2023
7.1.10.2 997 8/20/2023
7.1.10.1 1,042 8/20/2023
7.0.10.4 1,174 8/18/2023
7.0.10.3 245 8/17/2023
7.0.10.2 239 8/16/2023
7.0.10.1 241 8/9/2023
7.0.9.3 244 8/2/2023
7.0.9.2 224 8/2/2023
7.0.9.1 222 8/2/2023
7.0.8.2 260 7/11/2023
7.0.8.1 283 6/27/2023
7.0.7.3 256 6/21/2023
7.0.7.2 271 6/19/2023
7.0.7.1 286 6/14/2023
7.0.5.11 276 6/13/2023
7.0.5.10 235 6/12/2023
7.0.5.9 278 6/12/2023
7.0.5.8 272 5/26/2023
7.0.5.7 267 5/26/2023
7.0.5.6 250 5/22/2023
7.0.5.5 275 5/18/2023
7.0.5.4 270 5/18/2023
7.0.5.3 350 4/22/2023
7.0.5.2 331 4/13/2023
7.0.5.1 299 4/13/2023
7.0.5 332 4/13/2023
7.0.4 389 3/30/2023
7.0.3 415 3/6/2023
7.0.2 532 2/2/2023
7.0.1 484 12/19/2022
7.0.0 702 11/14/2022
6.0.54 752 10/21/2022
6.0.53 739 10/20/2022
6.0.52 741 10/6/2022
6.0.51 714 10/5/2022
6.0.50 771 9/30/2022
6.0.49 815 9/27/2022
6.0.48 785 9/22/2022
6.0.47 839 9/20/2022
6.0.46 856 8/27/2022
6.0.45 858 8/26/2022
6.0.44 832 8/26/2022
6.0.43 852 8/23/2022
6.0.42 808 8/23/2022
6.0.41 852 8/16/2022
6.0.40 833 8/16/2022
6.0.39 873 8/4/2022
6.0.38 843 8/4/2022
6.0.37 852 8/4/2022
6.0.36 839 8/4/2022
6.0.35 856 8/4/2022
6.0.34 890 8/3/2022
6.0.33 850 8/3/2022
6.0.32 892 8/3/2022
6.0.31 847 8/3/2022
6.0.29 918 7/22/2022
6.0.28 896 7/14/2022
6.0.27 910 7/12/2022
6.0.26 903 7/12/2022
6.0.25 917 6/23/2022
6.0.24 933 6/23/2022
6.0.23 884 6/22/2022
6.0.22 907 6/22/2022
6.0.21 907 6/21/2022
6.0.20 947 5/26/2022
6.0.19 924 5/13/2022
6.0.17 984 5/10/2022
6.0.16 963 4/27/2022
6.0.15 1,025 3/18/2022
6.0.14 970 3/16/2022
6.0.13 1,099 2/25/2022
6.0.12 1,019 2/25/2022
6.0.11 1,087 2/2/2022
6.0.10 1,063 1/24/2022
6.0.9 1,077 1/24/2022
6.0.8 1,053 1/24/2022
6.0.7 1,059 1/24/2022
6.0.6 1,042 1/20/2022
6.0.5 1,077 1/19/2022
6.0.4 839 12/30/2021
6.0.3 926 12/14/2021
6.0.2 926 12/14/2021
6.0.1 991 11/30/2021
6.0.0 2,663 11/26/2021
6.0.0-rc3 318 11/16/2021
6.0.0-rc2 306 11/15/2021
6.0.0-rc1 443 11/10/2021
5.0.41 901 10/31/2021
5.0.40 838 10/20/2021
5.0.39 852 10/8/2021
5.0.35 891 10/6/2021
5.0.34 881 10/6/2021
5.0.33 857 10/5/2021
5.0.32 806 10/5/2021
5.0.31 845 10/4/2021
5.0.30 760 10/4/2021
5.0.29 921 10/2/2021
5.0.28 874 10/2/2021
5.0.27 828 10/2/2021
5.0.26 757 10/2/2021
5.0.25 810 9/28/2021
5.0.24 797 9/22/2021
5.0.23 915 9/11/2021
5.0.22 881 9/10/2021
5.0.21 833 8/29/2021
5.0.20 835 8/9/2021
5.0.19 901 7/21/2021
5.0.18 958 1/10/2021
5.0.17 910 12/30/2020
5.0.16 915 12/21/2020
5.0.15 932 12/19/2020
5.0.14 942 12/19/2020
5.0.13 969 12/18/2020
5.0.12 890 12/12/2020
5.0.11 892 12/10/2020
5.0.10 897 12/9/2020
5.0.9 798 12/9/2020
5.0.8 818 12/9/2020
5.0.7 843 12/9/2020
5.0.6 929 12/7/2020
5.0.5 824 12/7/2020
5.0.4 856 12/7/2020
5.0.3 917 11/24/2020
5.0.2 905 11/24/2020
5.0.1 859 11/18/2020
5.0.0 901 11/14/2020