Pipoburgos.SharedKernel.Infrastructure 7.0.5.3

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.5.3
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 7.0.5.3
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.5.3" />
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.5.3
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 7.0.5.3"
#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.5.3

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

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

DotNetDBF infrastructure implementations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.6.2 331 6/5/2024
8.0.6.1 353 5/30/2024
8.0.5.1 330 5/14/2024
8.0.4.8 369 5/11/2024
8.0.4.7 339 5/1/2024
8.0.4.6 334 4/29/2024
8.0.4.5 347 4/27/2024
8.0.4.4 365 4/27/2024
8.0.4.3 376 4/26/2024
8.0.4.2 328 4/26/2024
8.0.4.1 374 4/20/2024
8.0.3.5 434 3/25/2024
8.0.3.4 424 3/14/2024
8.0.3.3 383 3/14/2024
8.0.3.2 358 3/13/2024
8.0.3.1 400 3/13/2024
8.0.2.6 467 2/15/2024
8.0.2.5 472 2/15/2024
8.0.2.4 461 2/15/2024
8.0.2.3 435 2/14/2024
8.0.2.2 454 2/14/2024
8.0.2.1 454 2/14/2024
8.0.0.8 551 1/29/2024
8.0.0.7 471 1/26/2024
8.0.0.6 484 1/26/2024
8.0.0.5 530 1/16/2024
8.0.0.4 534 12/29/2023
8.0.0.3 571 12/21/2023
8.0.0.2 565 12/13/2023
8.0.0.2-rc.3 121 10/25/2023
8.0.0.2-rc.2 54 10/6/2023
8.0.0.1 643 11/19/2023
8.0.0.1-rc.1 59 9/25/2023
8.0.0 580 11/15/2023
7.3.13.1 625 10/25/2023
7.3.11.4 660 10/9/2023
7.3.11.3 612 10/5/2023
7.3.11.2 707 9/21/2023
7.3.11.1 721 9/13/2023
7.3.10.1 775 9/11/2023
7.2.10.3 806 9/6/2023
7.2.10.2 791 9/1/2023
7.2.10.1 740 8/29/2023
7.1.10.5 720 8/24/2023
7.1.10.4 733 8/23/2023
7.1.10.3 882 8/20/2023
7.1.10.2 827 8/20/2023
7.1.10.1 882 8/20/2023
7.0.10.4 960 8/18/2023
7.0.10.3 174 8/17/2023
7.0.10.2 170 8/16/2023
7.0.10.1 183 8/9/2023
7.0.9.3 179 8/2/2023
7.0.9.2 152 8/2/2023
7.0.9.1 162 8/2/2023
7.0.8.2 204 7/11/2023
7.0.8.1 214 6/27/2023
7.0.7.3 178 6/21/2023
7.0.7.2 192 6/19/2023
7.0.7.1 192 6/14/2023
7.0.5.11 193 6/13/2023
7.0.5.10 165 6/12/2023
7.0.5.9 200 6/12/2023
7.0.5.8 202 5/26/2023
7.0.5.7 188 5/26/2023
7.0.5.6 188 5/22/2023
7.0.5.5 211 5/18/2023
7.0.5.4 187 5/18/2023
7.0.5.3 261 4/22/2023
7.0.5.2 256 4/13/2023
7.0.5.1 238 4/13/2023
7.0.5 251 4/13/2023
7.0.4 314 3/30/2023
7.0.3 335 3/6/2023
7.0.2 428 2/2/2023
7.0.1 404 12/19/2022
7.0.0 605 11/14/2022
6.0.54 661 10/21/2022
6.0.53 650 10/20/2022
6.0.52 642 10/6/2022
6.0.51 623 10/5/2022
6.0.50 685 9/30/2022
6.0.49 740 9/27/2022
6.0.48 701 9/22/2022
6.0.47 752 9/20/2022
6.0.46 763 8/27/2022
6.0.45 787 8/26/2022
6.0.44 751 8/26/2022
6.0.43 764 8/23/2022
6.0.42 722 8/23/2022
6.0.41 752 8/16/2022
6.0.40 750 8/16/2022
6.0.39 769 8/4/2022
6.0.38 756 8/4/2022
6.0.37 746 8/4/2022
6.0.36 747 8/4/2022
6.0.35 748 8/4/2022
6.0.34 796 8/3/2022
6.0.33 757 8/3/2022
6.0.32 806 8/3/2022
6.0.31 754 8/3/2022
6.0.29 815 7/22/2022
6.0.28 806 7/14/2022
6.0.27 811 7/12/2022
6.0.26 807 7/12/2022
6.0.25 834 6/23/2022
6.0.24 838 6/23/2022
6.0.23 790 6/22/2022
6.0.22 805 6/22/2022
6.0.21 789 6/21/2022
6.0.20 849 5/26/2022
6.0.19 834 5/13/2022
6.0.17 881 5/10/2022
6.0.16 868 4/27/2022
6.0.15 934 3/18/2022
6.0.14 882 3/16/2022
6.0.13 1,007 2/25/2022
6.0.12 939 2/25/2022
6.0.11 972 2/2/2022
6.0.10 971 1/24/2022
6.0.9 978 1/24/2022
6.0.8 945 1/24/2022
6.0.7 948 1/24/2022
6.0.6 937 1/20/2022
6.0.5 963 1/19/2022
6.0.4 722 12/30/2021
6.0.3 842 12/14/2021
6.0.2 820 12/14/2021
6.0.1 890 11/30/2021
6.0.0 2,548 11/26/2021
6.0.0-rc3 224 11/16/2021
6.0.0-rc2 212 11/15/2021
6.0.0-rc1 347 11/10/2021
5.0.41 809 10/31/2021
5.0.40 737 10/20/2021
5.0.39 757 10/8/2021
5.0.35 787 10/6/2021
5.0.34 781 10/6/2021
5.0.33 758 10/5/2021
5.0.32 707 10/5/2021
5.0.31 767 10/4/2021
5.0.30 664 10/4/2021
5.0.29 810 10/2/2021
5.0.28 764 10/2/2021
5.0.27 723 10/2/2021
5.0.26 651 10/2/2021
5.0.25 696 9/28/2021
5.0.24 688 9/22/2021
5.0.23 816 9/11/2021
5.0.22 767 9/10/2021
5.0.21 732 8/29/2021
5.0.20 734 8/9/2021
5.0.19 803 7/21/2021
5.0.18 847 1/10/2021
5.0.17 790 12/30/2020
5.0.16 813 12/21/2020
5.0.15 822 12/19/2020
5.0.14 825 12/19/2020
5.0.13 858 12/18/2020
5.0.12 770 12/12/2020
5.0.11 779 12/10/2020
5.0.10 779 12/9/2020
5.0.9 693 12/9/2020
5.0.8 700 12/9/2020
5.0.7 728 12/9/2020
5.0.6 815 12/7/2020
5.0.5 705 12/7/2020
5.0.4 744 12/7/2020
5.0.3 804 11/24/2020
5.0.2 786 11/24/2020
5.0.1 745 11/18/2020
5.0.0 784 11/14/2020