Pipoburgos.SharedKernel.Infrastructure 9.0.0.2

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.0.2
                    
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 9.0.0.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.0.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.0.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.0.2
                    
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 9.0.0.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.
#addin nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.0.2
                    
Install Pipoburgos.SharedKernel.Infrastructure as a Cake Addin
#tool nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=9.0.0.2
                    
Install Pipoburgos.SharedKernel.Infrastructure 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. 
.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.4.2 130 5/7/2025
9.0.4.1 135 5/7/2025
9.0.3.3 372 4/6/2025
9.0.3.2 697 3/26/2025
9.0.3.1 369 3/17/2025
9.0.2.1 442 2/12/2025
9.0.0.5 579 12/4/2024
9.0.0.4 460 12/2/2024
9.0.0.3 460 11/27/2024
9.0.0.2 402 11/17/2024
9.0.0.1 467 11/16/2024
8.0.10.3 441 11/5/2024
8.0.10.2 411 11/1/2024
8.0.10.1 510 10/16/2024
8.0.7.3 370 7/27/2024
8.0.7.2 479 7/15/2024
8.0.6.2 508 6/5/2024
8.0.6.1 541 5/30/2024
8.0.5.1 480 5/14/2024
8.0.4.8 549 5/11/2024
8.0.4.7 493 5/1/2024
8.0.4.6 493 4/29/2024
8.0.4.5 520 4/27/2024
8.0.4.4 529 4/27/2024
8.0.4.3 555 4/26/2024
8.0.4.2 489 4/26/2024
8.0.4.1 529 4/20/2024
8.0.3.5 642 3/25/2024
8.0.3.4 620 3/14/2024
8.0.3.3 566 3/14/2024
8.0.3.2 530 3/13/2024
8.0.3.1 578 3/13/2024
8.0.2.6 629 2/15/2024
8.0.2.5 681 2/15/2024
8.0.2.4 650 2/15/2024
8.0.2.3 630 2/14/2024
8.0.2.2 663 2/14/2024
8.0.2.1 610 2/14/2024
8.0.0.8 735 1/29/2024
8.0.0.7 618 1/26/2024
8.0.0.6 646 1/26/2024
8.0.0.5 694 1/16/2024
8.0.0.4 744 12/29/2023
8.0.0.3 758 12/21/2023
8.0.0.2 742 12/13/2023
8.0.0.2-rc.3 148 10/25/2023
8.0.0.2-rc.2 76 10/6/2023
8.0.0.1 778 11/19/2023
8.0.0.1-rc.1 81 9/25/2023
8.0.0 733 11/15/2023
7.3.13.1 782 10/25/2023
7.3.11.4 836 10/9/2023
7.3.11.3 780 10/5/2023
7.3.11.2 866 9/21/2023
7.3.11.1 873 9/13/2023
7.3.10.1 953 9/11/2023
7.2.10.3 947 9/6/2023
7.2.10.2 969 9/1/2023
7.2.10.1 884 8/29/2023
7.1.10.5 866 8/24/2023
7.1.10.4 860 8/23/2023
7.1.10.3 1,040 8/20/2023
7.1.10.2 983 8/20/2023
7.1.10.1 1,023 8/20/2023
7.0.10.4 1,162 8/18/2023
7.0.10.3 225 8/17/2023
7.0.10.2 224 8/16/2023
7.0.10.1 226 8/9/2023
7.0.9.3 230 8/2/2023
7.0.9.2 206 8/2/2023
7.0.9.1 205 8/2/2023
7.0.8.2 248 7/11/2023
7.0.8.1 267 6/27/2023
7.0.7.3 244 6/21/2023
7.0.7.2 257 6/19/2023
7.0.7.1 272 6/14/2023
7.0.5.11 263 6/13/2023
7.0.5.10 214 6/12/2023
7.0.5.9 259 6/12/2023
7.0.5.8 240 5/26/2023
7.0.5.7 247 5/26/2023
7.0.5.6 235 5/22/2023
7.0.5.5 258 5/18/2023
7.0.5.4 249 5/18/2023
7.0.5.3 333 4/22/2023
7.0.5.2 313 4/13/2023
7.0.5.1 281 4/13/2023
7.0.5 314 4/13/2023
7.0.4 376 3/30/2023
7.0.3 400 3/6/2023
7.0.2 517 2/2/2023
7.0.1 472 12/19/2022
7.0.0 688 11/14/2022
6.0.54 737 10/21/2022
6.0.53 717 10/20/2022
6.0.52 718 10/6/2022
6.0.51 693 10/5/2022
6.0.50 756 9/30/2022
6.0.49 800 9/27/2022
6.0.48 771 9/22/2022
6.0.47 824 9/20/2022
6.0.46 835 8/27/2022
6.0.45 843 8/26/2022
6.0.44 818 8/26/2022
6.0.43 837 8/23/2022
6.0.42 793 8/23/2022
6.0.41 823 8/16/2022
6.0.40 815 8/16/2022
6.0.39 854 8/4/2022
6.0.38 827 8/4/2022
6.0.37 833 8/4/2022
6.0.36 820 8/4/2022
6.0.35 834 8/4/2022
6.0.34 870 8/3/2022
6.0.33 832 8/3/2022
6.0.32 870 8/3/2022
6.0.31 826 8/3/2022
6.0.29 897 7/22/2022
6.0.28 880 7/14/2022
6.0.27 890 7/12/2022
6.0.26 877 7/12/2022
6.0.25 899 6/23/2022
6.0.24 911 6/23/2022
6.0.23 864 6/22/2022
6.0.22 885 6/22/2022
6.0.21 883 6/21/2022
6.0.20 926 5/26/2022
6.0.19 905 5/13/2022
6.0.17 961 5/10/2022
6.0.16 942 4/27/2022
6.0.15 1,005 3/18/2022
6.0.14 946 3/16/2022
6.0.13 1,079 2/25/2022
6.0.12 999 2/25/2022
6.0.11 1,064 2/2/2022
6.0.10 1,041 1/24/2022
6.0.9 1,052 1/24/2022
6.0.8 1,032 1/24/2022
6.0.7 1,036 1/24/2022
6.0.6 1,018 1/20/2022
6.0.5 1,056 1/19/2022
6.0.4 800 12/30/2021
6.0.3 904 12/14/2021
6.0.2 902 12/14/2021
6.0.1 970 11/30/2021
6.0.0 2,634 11/26/2021
6.0.0-rc3 296 11/16/2021
6.0.0-rc2 284 11/15/2021
6.0.0-rc1 421 11/10/2021
5.0.41 882 10/31/2021
5.0.40 817 10/20/2021
5.0.39 832 10/8/2021
5.0.35 872 10/6/2021
5.0.34 855 10/6/2021
5.0.33 833 10/5/2021
5.0.32 781 10/5/2021
5.0.31 826 10/4/2021
5.0.30 736 10/4/2021
5.0.29 897 10/2/2021
5.0.28 841 10/2/2021
5.0.27 808 10/2/2021
5.0.26 728 10/2/2021
5.0.25 782 9/28/2021
5.0.24 770 9/22/2021
5.0.23 895 9/11/2021
5.0.22 854 9/10/2021
5.0.21 817 8/29/2021
5.0.20 812 8/9/2021
5.0.19 886 7/21/2021
5.0.18 936 1/10/2021
5.0.17 885 12/30/2020
5.0.16 894 12/21/2020
5.0.15 909 12/19/2020
5.0.14 917 12/19/2020
5.0.13 938 12/18/2020
5.0.12 868 12/12/2020
5.0.11 870 12/10/2020
5.0.10 871 12/9/2020
5.0.9 776 12/9/2020
5.0.8 793 12/9/2020
5.0.7 816 12/9/2020
5.0.6 905 12/7/2020
5.0.5 794 12/7/2020
5.0.4 832 12/7/2020
5.0.3 888 11/24/2020
5.0.2 869 11/24/2020
5.0.1 837 11/18/2020
5.0.0 875 11/14/2020