Pipoburgos.SharedKernel.Infrastructure 9.0.4.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Pipoburgos.SharedKernel.Infrastructure --version 9.0.4.1
                    
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 9.0.4.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.4.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.4.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.4.1
                    
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 9.0.4.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.
#:package Pipoburgos.SharedKernel.Infrastructure@9.0.4.1
                    
#: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.4.1
                    
Install as a Cake Addin
#tool nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.4.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.7.1 392 7/9/2025
9.0.6.1 413 6/16/2025
9.0.5.1 398 6/4/2025
9.0.4.2 426 5/7/2025
9.0.4.1 413 5/7/2025
9.0.3.3 405 4/6/2025
9.0.3.2 741 3/26/2025
9.0.3.1 389 3/17/2025
9.0.2.1 473 2/12/2025
9.0.0.5 612 12/4/2024
9.0.0.4 494 12/2/2024
9.0.0.3 479 11/27/2024
9.0.0.2 425 11/17/2024
9.0.0.1 496 11/16/2024
8.0.10.3 470 11/5/2024
8.0.10.2 431 11/1/2024
8.0.10.1 538 10/16/2024
8.0.7.3 415 7/27/2024
8.0.7.2 514 7/15/2024
8.0.6.2 528 6/5/2024
8.0.6.1 560 5/30/2024
8.0.5.1 516 5/14/2024
8.0.4.8 580 5/11/2024
8.0.4.7 549 5/1/2024
8.0.4.6 525 4/29/2024
8.0.4.5 553 4/27/2024
8.0.4.4 558 4/27/2024
8.0.4.3 587 4/26/2024
8.0.4.2 534 4/26/2024
8.0.4.1 573 4/20/2024
8.0.3.5 665 3/25/2024
8.0.3.4 657 3/14/2024
8.0.3.3 601 3/14/2024
8.0.3.2 555 3/13/2024
8.0.3.1 627 3/13/2024
8.0.2.6 662 2/15/2024
8.0.2.5 704 2/15/2024
8.0.2.4 675 2/15/2024
8.0.2.3 656 2/14/2024
8.0.2.2 709 2/14/2024
8.0.2.1 635 2/14/2024
8.0.0.8 767 1/29/2024
8.0.0.7 650 1/26/2024
8.0.0.6 664 1/26/2024
8.0.0.5 710 1/16/2024
8.0.0.4 772 12/29/2023
8.0.0.3 782 12/21/2023
8.0.0.2 767 12/13/2023
8.0.0.2-rc.3 160 10/25/2023
8.0.0.2-rc.2 87 10/6/2023
8.0.0.1 794 11/19/2023
8.0.0.1-rc.1 104 9/25/2023
8.0.0 782 11/15/2023
7.3.13.1 810 10/25/2023
7.3.11.4 861 10/9/2023
7.3.11.3 801 10/5/2023
7.3.11.2 889 9/21/2023
7.3.11.1 900 9/13/2023
7.3.10.1 979 9/11/2023
7.2.10.3 967 9/6/2023
7.2.10.2 1,000 9/1/2023
7.2.10.1 910 8/29/2023
7.1.10.5 906 8/24/2023
7.1.10.4 891 8/23/2023
7.1.10.3 1,071 8/20/2023
7.1.10.2 1,009 8/20/2023
7.1.10.1 1,051 8/20/2023
7.0.10.4 1,183 8/18/2023
7.0.10.3 261 8/17/2023
7.0.10.2 252 8/16/2023
7.0.10.1 253 8/9/2023
7.0.9.3 258 8/2/2023
7.0.9.2 237 8/2/2023
7.0.9.1 233 8/2/2023
7.0.8.2 271 7/11/2023
7.0.8.1 298 6/27/2023
7.0.7.3 265 6/21/2023
7.0.7.2 280 6/19/2023
7.0.7.1 295 6/14/2023
7.0.5.11 286 6/13/2023
7.0.5.10 244 6/12/2023
7.0.5.9 287 6/12/2023
7.0.5.8 286 5/26/2023
7.0.5.7 277 5/26/2023
7.0.5.6 259 5/22/2023
7.0.5.5 284 5/18/2023
7.0.5.4 282 5/18/2023
7.0.5.3 361 4/22/2023
7.0.5.2 340 4/13/2023
7.0.5.1 311 4/13/2023
7.0.5 341 4/13/2023
7.0.4 401 3/30/2023
7.0.3 426 3/6/2023
7.0.2 541 2/2/2023
7.0.1 498 12/19/2022
7.0.0 714 11/14/2022
6.0.54 761 10/21/2022
6.0.53 752 10/20/2022
6.0.52 755 10/6/2022
6.0.51 726 10/5/2022
6.0.50 781 9/30/2022
6.0.49 825 9/27/2022
6.0.48 799 9/22/2022
6.0.47 849 9/20/2022
6.0.46 870 8/27/2022
6.0.45 871 8/26/2022
6.0.44 843 8/26/2022
6.0.43 867 8/23/2022
6.0.42 818 8/23/2022
6.0.41 866 8/16/2022
6.0.40 848 8/16/2022
6.0.39 883 8/4/2022
6.0.38 858 8/4/2022
6.0.37 863 8/4/2022
6.0.36 852 8/4/2022
6.0.35 872 8/4/2022
6.0.34 903 8/3/2022
6.0.33 862 8/3/2022
6.0.32 905 8/3/2022
6.0.31 862 8/3/2022
6.0.29 932 7/22/2022
6.0.28 906 7/14/2022
6.0.27 919 7/12/2022
6.0.26 913 7/12/2022
6.0.25 927 6/23/2022
6.0.24 943 6/23/2022
6.0.23 897 6/22/2022
6.0.22 924 6/22/2022
6.0.21 920 6/21/2022
6.0.20 961 5/26/2022
6.0.19 935 5/13/2022
6.0.17 997 5/10/2022
6.0.16 974 4/27/2022
6.0.15 1,040 3/18/2022
6.0.14 985 3/16/2022
6.0.13 1,117 2/25/2022
6.0.12 1,030 2/25/2022
6.0.11 1,102 2/2/2022
6.0.10 1,075 1/24/2022
6.0.9 1,092 1/24/2022
6.0.8 1,067 1/24/2022
6.0.7 1,073 1/24/2022
6.0.6 1,053 1/20/2022
6.0.5 1,088 1/19/2022
6.0.4 853 12/30/2021
6.0.3 937 12/14/2021
6.0.2 938 12/14/2021
6.0.1 1,003 11/30/2021
6.0.0 2,682 11/26/2021
6.0.0-rc3 330 11/16/2021
6.0.0-rc2 319 11/15/2021
6.0.0-rc1 458 11/10/2021
5.0.41 913 10/31/2021
5.0.40 850 10/20/2021
5.0.39 864 10/8/2021
5.0.35 903 10/6/2021
5.0.34 896 10/6/2021
5.0.33 875 10/5/2021
5.0.32 818 10/5/2021
5.0.31 857 10/4/2021
5.0.30 776 10/4/2021
5.0.29 936 10/2/2021
5.0.28 889 10/2/2021
5.0.27 841 10/2/2021
5.0.26 773 10/2/2021
5.0.25 826 9/28/2021
5.0.24 813 9/22/2021
5.0.23 929 9/11/2021
5.0.22 898 9/10/2021
5.0.21 845 8/29/2021
5.0.20 847 8/9/2021
5.0.19 913 7/21/2021
5.0.18 974 1/10/2021
5.0.17 924 12/30/2020
5.0.16 926 12/21/2020
5.0.15 944 12/19/2020
5.0.14 956 12/19/2020
5.0.13 985 12/18/2020
5.0.12 904 12/12/2020
5.0.11 903 12/10/2020
5.0.10 908 12/9/2020
5.0.9 810 12/9/2020
5.0.8 830 12/9/2020
5.0.7 859 12/9/2020
5.0.6 940 12/7/2020
5.0.5 841 12/7/2020
5.0.4 873 12/7/2020
5.0.3 930 11/24/2020
5.0.2 920 11/24/2020
5.0.1 871 11/18/2020
5.0.0 914 11/14/2020