Pipoburgos.SharedKernel.Infrastructure 6.0.43

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

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

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 (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.0.2 352 11/17/2024
9.0.0.1 423 11/16/2024
8.0.10.3 406 11/5/2024
8.0.10.2 378 11/1/2024
8.0.10.1 418 10/16/2024
8.0.7.3 341 7/27/2024
8.0.7.2 458 7/15/2024
8.0.6.2 488 6/5/2024
8.0.6.1 518 5/30/2024
8.0.5.1 459 5/14/2024
8.0.4.8 529 5/11/2024
8.0.4.7 469 5/1/2024
8.0.4.6 474 4/29/2024
8.0.4.5 501 4/27/2024
8.0.4.4 507 4/27/2024
8.0.4.3 537 4/26/2024
8.0.4.2 470 4/26/2024
8.0.4.1 511 4/20/2024
8.0.3.5 604 3/25/2024
8.0.3.4 600 3/14/2024
8.0.3.3 548 3/14/2024
8.0.3.2 513 3/13/2024
8.0.3.1 561 3/13/2024
8.0.2.6 608 2/15/2024
8.0.2.5 645 2/15/2024
8.0.2.4 632 2/15/2024
8.0.2.3 610 2/14/2024
8.0.2.2 643 2/14/2024
8.0.2.1 589 2/14/2024
8.0.0.8 718 1/29/2024
8.0.0.7 601 1/26/2024
8.0.0.6 628 1/26/2024
8.0.0.5 678 1/16/2024
8.0.0.4 718 12/29/2023
8.0.0.3 742 12/21/2023
8.0.0.2 726 12/13/2023
8.0.0.2-rc.3 143 10/25/2023
8.0.0.2-rc.2 71 10/6/2023
8.0.0.1 768 11/19/2023
8.0.0.1-rc.1 74 9/25/2023
8.0.0 723 11/15/2023
7.3.13.1 775 10/25/2023
7.3.11.4 827 10/9/2023
7.3.11.3 771 10/5/2023
7.3.11.2 856 9/21/2023
7.3.11.1 866 9/13/2023
7.3.10.1 944 9/11/2023
7.2.10.3 938 9/6/2023
7.2.10.2 960 9/1/2023
7.2.10.1 875 8/29/2023
7.1.10.5 857 8/24/2023
7.1.10.4 851 8/23/2023
7.1.10.3 1,031 8/20/2023
7.1.10.2 971 8/20/2023
7.1.10.1 1,012 8/20/2023
7.0.10.4 1,153 8/18/2023
7.0.10.3 216 8/17/2023
7.0.10.2 212 8/16/2023
7.0.10.1 214 8/9/2023
7.0.9.3 218 8/2/2023
7.0.9.2 195 8/2/2023
7.0.9.1 188 8/2/2023
7.0.8.2 235 7/11/2023
7.0.8.1 255 6/27/2023
7.0.7.3 234 6/21/2023
7.0.7.2 244 6/19/2023
7.0.7.1 256 6/14/2023
7.0.5.11 247 6/13/2023
7.0.5.10 196 6/12/2023
7.0.5.9 243 6/12/2023
7.0.5.8 222 5/26/2023
7.0.5.7 226 5/26/2023
7.0.5.6 215 5/22/2023
7.0.5.5 238 5/18/2023
7.0.5.4 229 5/18/2023
7.0.5.3 313 4/22/2023
7.0.5.2 295 4/13/2023
7.0.5.1 263 4/13/2023
7.0.5 294 4/13/2023
7.0.4 358 3/30/2023
7.0.3 379 3/6/2023
7.0.2 490 2/2/2023
7.0.1 451 12/19/2022
7.0.0 662 11/14/2022
6.0.54 713 10/21/2022
6.0.53 692 10/20/2022
6.0.52 692 10/6/2022
6.0.51 667 10/5/2022
6.0.50 730 9/30/2022
6.0.49 774 9/27/2022
6.0.48 745 9/22/2022
6.0.47 798 9/20/2022
6.0.46 809 8/27/2022
6.0.45 817 8/26/2022
6.0.44 794 8/26/2022
6.0.43 811 8/23/2022
6.0.42 767 8/23/2022
6.0.41 796 8/16/2022
6.0.40 788 8/16/2022
6.0.39 826 8/4/2022
6.0.38 800 8/4/2022
6.0.37 803 8/4/2022
6.0.36 794 8/4/2022
6.0.35 805 8/4/2022
6.0.34 844 8/3/2022
6.0.33 804 8/3/2022
6.0.32 844 8/3/2022
6.0.31 798 8/3/2022
6.0.29 869 7/22/2022
6.0.28 844 7/14/2022
6.0.27 864 7/12/2022
6.0.26 851 7/12/2022
6.0.25 873 6/23/2022
6.0.24 884 6/23/2022
6.0.23 836 6/22/2022
6.0.22 859 6/22/2022
6.0.21 855 6/21/2022
6.0.20 895 5/26/2022
6.0.19 877 5/13/2022
6.0.17 933 5/10/2022
6.0.16 912 4/27/2022
6.0.15 973 3/18/2022
6.0.14 914 3/16/2022
6.0.13 1,047 2/25/2022
6.0.12 966 2/25/2022
6.0.11 1,031 2/2/2022
6.0.10 1,009 1/24/2022
6.0.9 1,020 1/24/2022
6.0.8 1,000 1/24/2022
6.0.7 1,003 1/24/2022
6.0.6 987 1/20/2022
6.0.5 1,026 1/19/2022
6.0.4 768 12/30/2021
6.0.3 874 12/14/2021
6.0.2 871 12/14/2021
6.0.1 937 11/30/2021
6.0.0 2,603 11/26/2021
6.0.0-rc3 268 11/16/2021
6.0.0-rc2 257 11/15/2021
6.0.0-rc1 394 11/10/2021
5.0.41 850 10/31/2021
5.0.40 785 10/20/2021
5.0.39 799 10/8/2021
5.0.35 841 10/6/2021
5.0.34 823 10/6/2021
5.0.33 799 10/5/2021
5.0.32 749 10/5/2021
5.0.31 795 10/4/2021
5.0.30 704 10/4/2021
5.0.29 865 10/2/2021
5.0.28 809 10/2/2021
5.0.27 775 10/2/2021
5.0.26 696 10/2/2021
5.0.25 750 9/28/2021
5.0.24 735 9/22/2021
5.0.23 863 9/11/2021
5.0.22 821 9/10/2021
5.0.21 780 8/29/2021
5.0.20 771 8/9/2021
5.0.19 851 7/21/2021
5.0.18 893 1/10/2021
5.0.17 842 12/30/2020
5.0.16 851 12/21/2020
5.0.15 866 12/19/2020
5.0.14 874 12/19/2020
5.0.13 895 12/18/2020
5.0.12 822 12/12/2020
5.0.11 826 12/10/2020
5.0.10 828 12/9/2020
5.0.9 734 12/9/2020
5.0.8 747 12/9/2020
5.0.7 773 12/9/2020
5.0.6 863 12/7/2020
5.0.5 751 12/7/2020
5.0.4 790 12/7/2020
5.0.3 846 11/24/2020
5.0.2 827 11/24/2020
5.0.1 793 11/18/2020
5.0.0 831 11/14/2020