Pipoburgos.SharedKernel.Infrastructure 6.0.52

There is a newer version of this package available.
See the version list below for details.
dotnet add package Pipoburgos.SharedKernel.Infrastructure --version 6.0.52
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 6.0.52
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="6.0.52" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Pipoburgos.SharedKernel.Infrastructure --version 6.0.52
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 6.0.52"
#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=6.0.52

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

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 is compatible.  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 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 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 is compatible. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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 341 6/5/2024
8.0.6.1 358 5/30/2024
8.0.5.1 331 5/14/2024
8.0.4.8 370 5/11/2024
8.0.4.7 340 5/1/2024
8.0.4.6 335 4/29/2024
8.0.4.5 348 4/27/2024
8.0.4.4 366 4/27/2024
8.0.4.3 383 4/26/2024
8.0.4.2 329 4/26/2024
8.0.4.1 375 4/20/2024
8.0.3.5 435 3/25/2024
8.0.3.4 425 3/14/2024
8.0.3.3 390 3/14/2024
8.0.3.2 359 3/13/2024
8.0.3.1 401 3/13/2024
8.0.2.6 468 2/15/2024
8.0.2.5 473 2/15/2024
8.0.2.4 462 2/15/2024
8.0.2.3 436 2/14/2024
8.0.2.2 455 2/14/2024
8.0.2.1 460 2/14/2024
8.0.0.8 552 1/29/2024
8.0.0.7 472 1/26/2024
8.0.0.6 485 1/26/2024
8.0.0.5 533 1/16/2024
8.0.0.4 535 12/29/2023
8.0.0.3 572 12/21/2023
8.0.0.2 566 12/13/2023
8.0.0.2-rc.3 122 10/25/2023
8.0.0.2-rc.2 55 10/6/2023
8.0.0.1 649 11/19/2023
8.0.0.1-rc.1 60 9/25/2023
8.0.0 581 11/15/2023
7.3.13.1 626 10/25/2023
7.3.11.4 661 10/9/2023
7.3.11.3 613 10/5/2023
7.3.11.2 708 9/21/2023
7.3.11.1 722 9/13/2023
7.3.10.1 776 9/11/2023
7.2.10.3 807 9/6/2023
7.2.10.2 792 9/1/2023
7.2.10.1 741 8/29/2023
7.1.10.5 721 8/24/2023
7.1.10.4 734 8/23/2023
7.1.10.3 883 8/20/2023
7.1.10.2 828 8/20/2023
7.1.10.1 889 8/20/2023
7.0.10.4 961 8/18/2023
7.0.10.3 175 8/17/2023
7.0.10.2 171 8/16/2023
7.0.10.1 184 8/9/2023
7.0.9.3 180 8/2/2023
7.0.9.2 159 8/2/2023
7.0.9.1 163 8/2/2023
7.0.8.2 205 7/11/2023
7.0.8.1 215 6/27/2023
7.0.7.3 179 6/21/2023
7.0.7.2 193 6/19/2023
7.0.7.1 194 6/14/2023
7.0.5.11 194 6/13/2023
7.0.5.10 166 6/12/2023
7.0.5.9 201 6/12/2023
7.0.5.8 203 5/26/2023
7.0.5.7 189 5/26/2023
7.0.5.6 189 5/22/2023
7.0.5.5 213 5/18/2023
7.0.5.4 188 5/18/2023
7.0.5.3 262 4/22/2023
7.0.5.2 258 4/13/2023
7.0.5.1 239 4/13/2023
7.0.5 252 4/13/2023
7.0.4 315 3/30/2023
7.0.3 337 3/6/2023
7.0.2 429 2/2/2023
7.0.1 405 12/19/2022
7.0.0 606 11/14/2022
6.0.54 662 10/21/2022
6.0.53 651 10/20/2022
6.0.52 643 10/6/2022
6.0.51 624 10/5/2022
6.0.50 686 9/30/2022
6.0.49 741 9/27/2022
6.0.48 702 9/22/2022
6.0.47 753 9/20/2022
6.0.46 770 8/27/2022
6.0.45 788 8/26/2022
6.0.44 758 8/26/2022
6.0.43 765 8/23/2022
6.0.42 723 8/23/2022
6.0.41 753 8/16/2022
6.0.40 751 8/16/2022
6.0.39 770 8/4/2022
6.0.38 757 8/4/2022
6.0.37 747 8/4/2022
6.0.36 748 8/4/2022
6.0.35 749 8/4/2022
6.0.34 797 8/3/2022
6.0.33 764 8/3/2022
6.0.32 807 8/3/2022
6.0.31 755 8/3/2022
6.0.29 816 7/22/2022
6.0.28 807 7/14/2022
6.0.27 812 7/12/2022
6.0.26 808 7/12/2022
6.0.25 835 6/23/2022
6.0.24 839 6/23/2022
6.0.23 791 6/22/2022
6.0.22 806 6/22/2022
6.0.21 790 6/21/2022
6.0.20 850 5/26/2022
6.0.19 835 5/13/2022
6.0.17 883 5/10/2022
6.0.16 869 4/27/2022
6.0.15 935 3/18/2022
6.0.14 883 3/16/2022
6.0.13 1,008 2/25/2022
6.0.12 940 2/25/2022
6.0.11 973 2/2/2022
6.0.10 972 1/24/2022
6.0.9 979 1/24/2022
6.0.8 946 1/24/2022
6.0.7 949 1/24/2022
6.0.6 938 1/20/2022
6.0.5 964 1/19/2022
6.0.4 723 12/30/2021
6.0.3 849 12/14/2021
6.0.2 821 12/14/2021
6.0.1 891 11/30/2021
6.0.0 2,549 11/26/2021
6.0.0-rc3 225 11/16/2021
6.0.0-rc2 213 11/15/2021
6.0.0-rc1 348 11/10/2021
5.0.41 810 10/31/2021
5.0.40 738 10/20/2021
5.0.39 758 10/8/2021
5.0.35 788 10/6/2021
5.0.34 782 10/6/2021
5.0.33 759 10/5/2021
5.0.32 708 10/5/2021
5.0.31 768 10/4/2021
5.0.30 665 10/4/2021
5.0.29 811 10/2/2021
5.0.28 765 10/2/2021
5.0.27 724 10/2/2021
5.0.26 652 10/2/2021
5.0.25 697 9/28/2021
5.0.24 689 9/22/2021
5.0.23 817 9/11/2021
5.0.22 768 9/10/2021
5.0.21 733 8/29/2021
5.0.20 735 8/9/2021
5.0.19 804 7/21/2021
5.0.18 849 1/10/2021
5.0.17 792 12/30/2020
5.0.16 815 12/21/2020
5.0.15 824 12/19/2020
5.0.14 827 12/19/2020
5.0.13 860 12/18/2020
5.0.12 772 12/12/2020
5.0.11 781 12/10/2020
5.0.10 781 12/9/2020
5.0.9 695 12/9/2020
5.0.8 702 12/9/2020
5.0.7 730 12/9/2020
5.0.6 817 12/7/2020
5.0.5 707 12/7/2020
5.0.4 746 12/7/2020
5.0.3 807 11/24/2020
5.0.2 789 11/24/2020
5.0.1 747 11/18/2020
5.0.0 786 11/14/2020