Pipoburgos.SharedKernel.Infrastructure 7.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 7.0.2
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 7.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="7.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Pipoburgos.SharedKernel.Infrastructure --version 7.0.2
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 7.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.
// Install Pipoburgos.SharedKernel.Infrastructure as a Cake Addin
#addin nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=7.0.2

// Install Pipoburgos.SharedKernel.Infrastructure as a Cake Tool
#tool nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=7.0.2

The following code demonstrates basic usage of Shared Kernel Infastructure.

appsettings.json for mongo connection

{
  "MongoSettings": {
    "ConnectionString": "mongodb://localhost:27017",
    "Database": "XXX"
  }
}
namespace XXX.Infrastructure
{
    public static class XXXModule
    {
        public static IServiceCollection AddXXXModule(this IServiceCollection services,
            IConfiguration configuration, string connectionStringName)
        {
            return services
                .AddAutoMapper(new XXXAutoMapperProfile(), typeof(ApplicationCommandHandler).Assembly,
                    typeof(UserRegistered).Assembly,
                    typeof(XXXDbContext).Assembly)
                .AddDomainEvents(typeof(XXXEvent))
                .AddDomainEventsSubscribers(typeof(XXXEventSusbcriber))
                .AddCommandsHandlers(typeof(ApplicationCommandHandler))
                .AddQueriesHandlers(typeof(InfrastructureQueryHandler))
                .AddDapperSqlServer<XXXDbContext>(configuration, connectionStringName)
                .AddEntityFrameworkCoreSqlServer<XXXDbContext>(configuration, connectionStringName)
                .AddMongo(configuration)
                .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 is compatible.  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 is compatible.  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 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (10)

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.Elasticsearch

Elasticsearch infrastructure implementations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.3.5 279 3/25/2024
8.0.3.4 358 3/14/2024
8.0.3.3 328 3/14/2024
8.0.3.2 306 3/13/2024
8.0.3.1 352 3/13/2024
8.0.2.6 409 2/15/2024
8.0.2.5 427 2/15/2024
8.0.2.4 406 2/15/2024
8.0.2.3 386 2/14/2024
8.0.2.2 413 2/14/2024
8.0.2.1 404 2/14/2024
8.0.0.8 505 1/29/2024
8.0.0.7 413 1/26/2024
8.0.0.6 446 1/26/2024
8.0.0.5 474 1/16/2024
8.0.0.4 497 12/29/2023
8.0.0.3 525 12/21/2023
8.0.0.2 522 12/13/2023
8.0.0.2-rc.3 119 10/25/2023
8.0.0.2-rc.2 54 10/6/2023
8.0.0.1 591 11/19/2023
8.0.0.1-rc.1 58 9/25/2023
8.0.0 537 11/15/2023
7.3.13.1 569 10/25/2023
7.3.11.4 619 10/9/2023
7.3.11.3 569 10/5/2023
7.3.11.2 657 9/21/2023
7.3.11.1 666 9/13/2023
7.3.10.1 726 9/11/2023
7.2.10.3 758 9/6/2023
7.2.10.2 738 9/1/2023
7.2.10.1 694 8/29/2023
7.1.10.5 676 8/24/2023
7.1.10.4 704 8/23/2023
7.1.10.3 839 8/20/2023
7.1.10.2 786 8/20/2023
7.1.10.1 844 8/20/2023
7.0.10.4 899 8/18/2023
7.0.10.3 163 8/17/2023
7.0.10.2 165 8/16/2023
7.0.10.1 172 8/9/2023
7.0.9.3 173 8/2/2023
7.0.9.2 147 8/2/2023
7.0.9.1 150 8/2/2023
7.0.8.2 199 7/11/2023
7.0.8.1 209 6/27/2023
7.0.7.3 174 6/21/2023
7.0.7.2 188 6/19/2023
7.0.7.1 186 6/14/2023
7.0.5.11 185 6/13/2023
7.0.5.10 159 6/12/2023
7.0.5.9 188 6/12/2023
7.0.5.8 190 5/26/2023
7.0.5.7 182 5/26/2023
7.0.5.6 182 5/22/2023
7.0.5.5 205 5/18/2023
7.0.5.4 181 5/18/2023
7.0.5.3 245 4/22/2023
7.0.5.2 251 4/13/2023
7.0.5.1 233 4/13/2023
7.0.5 246 4/13/2023
7.0.4 308 3/30/2023
7.0.3 327 3/6/2023
7.0.2 416 2/2/2023
7.0.1 397 12/19/2022
7.0.0 598 11/14/2022
6.0.54 656 10/21/2022
6.0.53 646 10/20/2022
6.0.52 638 10/6/2022
6.0.51 621 10/5/2022
6.0.50 680 9/30/2022
6.0.49 736 9/27/2022
6.0.48 699 9/22/2022
6.0.47 750 9/20/2022
6.0.46 759 8/27/2022
6.0.45 780 8/26/2022
6.0.44 749 8/26/2022
6.0.43 762 8/23/2022
6.0.42 720 8/23/2022
6.0.41 746 8/16/2022
6.0.40 748 8/16/2022
6.0.39 767 8/4/2022
6.0.38 754 8/4/2022
6.0.37 744 8/4/2022
6.0.36 745 8/4/2022
6.0.35 746 8/4/2022
6.0.34 794 8/3/2022
6.0.33 754 8/3/2022
6.0.32 803 8/3/2022
6.0.31 752 8/3/2022
6.0.29 812 7/22/2022
6.0.28 804 7/14/2022
6.0.27 809 7/12/2022
6.0.26 805 7/12/2022
6.0.25 831 6/23/2022
6.0.24 836 6/23/2022
6.0.23 787 6/22/2022
6.0.22 803 6/22/2022
6.0.21 786 6/21/2022
6.0.20 845 5/26/2022
6.0.19 826 5/13/2022
6.0.17 873 5/10/2022
6.0.16 866 4/27/2022
6.0.15 931 3/18/2022
6.0.14 880 3/16/2022
6.0.13 1,005 2/25/2022
6.0.12 937 2/25/2022
6.0.11 970 2/2/2022
6.0.10 969 1/24/2022
6.0.9 975 1/24/2022
6.0.8 942 1/24/2022
6.0.7 946 1/24/2022
6.0.6 935 1/20/2022
6.0.5 961 1/19/2022
6.0.4 714 12/30/2021
6.0.3 839 12/14/2021
6.0.2 818 12/14/2021
6.0.1 888 11/30/2021
6.0.0 2,543 11/26/2021
6.0.0-rc3 221 11/16/2021
6.0.0-rc2 211 11/15/2021
6.0.0-rc1 346 11/10/2021
5.0.41 803 10/31/2021
5.0.40 735 10/20/2021
5.0.39 755 10/8/2021
5.0.35 785 10/6/2021
5.0.34 773 10/6/2021
5.0.33 750 10/5/2021
5.0.32 705 10/5/2021
5.0.31 765 10/4/2021
5.0.30 662 10/4/2021
5.0.29 808 10/2/2021
5.0.28 761 10/2/2021
5.0.27 719 10/2/2021
5.0.26 649 10/2/2021
5.0.25 692 9/28/2021
5.0.24 685 9/22/2021
5.0.23 813 9/11/2021
5.0.22 765 9/10/2021
5.0.21 729 8/29/2021
5.0.20 732 8/9/2021
5.0.19 800 7/21/2021
5.0.18 843 1/10/2021
5.0.17 786 12/30/2020
5.0.16 811 12/21/2020
5.0.15 820 12/19/2020
5.0.14 823 12/19/2020
5.0.13 852 12/18/2020
5.0.12 768 12/12/2020
5.0.11 777 12/10/2020
5.0.10 777 12/9/2020
5.0.9 691 12/9/2020
5.0.8 698 12/9/2020
5.0.7 719 12/9/2020
5.0.6 807 12/7/2020
5.0.5 703 12/7/2020
5.0.4 742 12/7/2020
5.0.3 795 11/24/2020
5.0.2 784 11/24/2020
5.0.1 742 11/18/2020
5.0.0 782 11/14/2020