Pipoburgos.SharedKernel.Infrastructure
6.0.15
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
.NET Framework 4.6.1
This package targets .NET Framework 4.6.1. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Pipoburgos.SharedKernel.Infrastructure --version 6.0.15
NuGet\Install-Package Pipoburgos.SharedKernel.Infrastructure -Version 6.0.15
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.15" />
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.15
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Pipoburgos.SharedKernel.Infrastructure, 6.0.15"
#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.15 // Install Pipoburgos.SharedKernel.Infrastructure as a Cake Tool #tool nuget:?package=Pipoburgos.SharedKernel.Infrastructure&version=6.0.15
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
.NETCoreApp 3.1
- AspNetCore.HealthChecks.MongoDb (>= 6.0.2)
- AspNetCore.HealthChecks.NpgSql (>= 6.0.2)
- AspNetCore.HealthChecks.Rabbitmq (>= 6.0.2)
- AspNetCore.HealthChecks.Redis (>= 6.0.3)
- AspNetCore.HealthChecks.SqlServer (>= 6.0.2)
- AspNetCore.HealthChecks.System (>= 6.0.4)
- AspNetCore.Reporting (>= 2.1.0)
- AutoMapper (>= 11.0.1)
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 11.0.0)
- Dapper (>= 2.0.123)
- DistributedLock.SqlServer (>= 1.0.1)
- FluentValidation (>= 10.4.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 3.1.10)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Data.SqlClient (>= 4.1.0)
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.10)
- Microsoft.EntityFrameworkCore.SqlServer (>= 3.1.10)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 6.0.3)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 6.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
- MongoDB.Driver (>= 2.15.0)
- NEST (>= 7.17.0)
- Newtonsoft.Json (>= 13.0.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 3.1.4)
- Pipoburgos.SharedKernel.Application (>= 6.0.15)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.2.4)
- System.CodeDom (>= 6.0.0)
- System.Data.SqlClient (>= 4.8.3)
- System.DirectoryServices (>= 6.0.0)
- System.Runtime.Extensions (>= 4.3.1)
- System.Text.Encoding.CodePages (>= 6.0.0)
- System.Text.Json (>= 6.0.2)
-
.NETFramework 4.6.1
- AspNetCore.HealthChecks.MongoDb (>= 6.0.2)
- AspNetCore.HealthChecks.NpgSql (>= 6.0.2)
- AspNetCore.HealthChecks.Rabbitmq (>= 6.0.2)
- AspNetCore.HealthChecks.Redis (>= 6.0.3)
- AspNetCore.HealthChecks.SqlServer (>= 6.0.2)
- AspNetCore.HealthChecks.System (>= 6.0.4)
- AspNetCore.Reporting (>= 2.1.0)
- AutoMapper (>= 10.1.1)
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 8.1.1)
- Dapper (>= 2.0.123)
- DistributedLock.SqlServer (>= 1.0.1)
- FluentValidation (>= 10.4.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Data.SqlClient (>= 4.1.0)
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.10)
- Microsoft.EntityFrameworkCore.SqlServer (>= 3.1.10)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 6.0.3)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 6.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
- MongoDB.Driver (>= 2.15.0)
- NEST (>= 7.17.0)
- Newtonsoft.Json (>= 13.0.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 3.1.4)
- Pipoburgos.SharedKernel.Application (>= 6.0.15)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.2.4)
- System.CodeDom (>= 6.0.0)
- System.Data.SqlClient (>= 4.8.3)
- System.DirectoryServices (>= 6.0.0)
- System.Runtime.Extensions (>= 4.3.1)
- System.Text.Encoding.CodePages (>= 6.0.0)
- System.Text.Json (>= 6.0.2)
-
.NETStandard 2.1
- AspNetCore.HealthChecks.MongoDb (>= 6.0.2)
- AspNetCore.HealthChecks.NpgSql (>= 6.0.2)
- AspNetCore.HealthChecks.Rabbitmq (>= 6.0.2)
- AspNetCore.HealthChecks.Redis (>= 6.0.3)
- AspNetCore.HealthChecks.SqlServer (>= 6.0.2)
- AspNetCore.HealthChecks.System (>= 6.0.4)
- AspNetCore.Reporting (>= 2.1.0)
- AutoMapper (>= 11.0.1)
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 11.0.0)
- Dapper (>= 2.0.123)
- DistributedLock.SqlServer (>= 1.0.1)
- FluentValidation (>= 10.4.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Data.SqlClient (>= 4.1.0)
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.10)
- Microsoft.EntityFrameworkCore.SqlServer (>= 3.1.10)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 6.0.3)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 6.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
- MongoDB.Driver (>= 2.15.0)
- NEST (>= 7.17.0)
- Newtonsoft.Json (>= 13.0.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 3.1.4)
- Pipoburgos.SharedKernel.Application (>= 6.0.15)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.2.4)
- System.CodeDom (>= 6.0.0)
- System.Data.SqlClient (>= 4.8.3)
- System.DirectoryServices (>= 6.0.0)
- System.Runtime.Extensions (>= 4.3.1)
- System.Text.Encoding.CodePages (>= 6.0.0)
- System.Text.Json (>= 6.0.2)
-
net5.0
- AspNetCore.HealthChecks.MongoDb (>= 6.0.2)
- AspNetCore.HealthChecks.NpgSql (>= 6.0.2)
- AspNetCore.HealthChecks.Rabbitmq (>= 6.0.2)
- AspNetCore.HealthChecks.Redis (>= 6.0.3)
- AspNetCore.HealthChecks.SqlServer (>= 6.0.2)
- AspNetCore.HealthChecks.System (>= 6.0.4)
- AspNetCore.Reporting (>= 2.1.0)
- AutoMapper (>= 11.0.1)
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 11.0.0)
- Dapper (>= 2.0.123)
- DistributedLock.SqlServer (>= 1.0.1)
- FluentValidation (>= 10.4.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 5.0.11)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Data.SqlClient (>= 4.1.0)
- Microsoft.EntityFrameworkCore.Relational (>= 5.0.11)
- Microsoft.EntityFrameworkCore.SqlServer (>= 5.0.11)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 6.0.3)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 6.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
- MongoDB.Driver (>= 2.15.0)
- NEST (>= 7.17.0)
- Newtonsoft.Json (>= 13.0.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 5.0.10)
- Pipoburgos.SharedKernel.Application (>= 6.0.15)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.2.4)
- System.CodeDom (>= 6.0.0)
- System.Data.SqlClient (>= 4.8.3)
- System.DirectoryServices (>= 6.0.0)
- System.Runtime.Extensions (>= 4.3.1)
- System.Text.Encoding.CodePages (>= 6.0.0)
- System.Text.Json (>= 6.0.2)
-
net6.0
- AspNetCore.HealthChecks.MongoDb (>= 6.0.2)
- AspNetCore.HealthChecks.NpgSql (>= 6.0.2)
- AspNetCore.HealthChecks.Rabbitmq (>= 6.0.2)
- AspNetCore.HealthChecks.Redis (>= 6.0.3)
- AspNetCore.HealthChecks.SqlServer (>= 6.0.2)
- AspNetCore.HealthChecks.System (>= 6.0.4)
- AspNetCore.Reporting (>= 2.1.0)
- AutoMapper (>= 11.0.1)
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 11.0.0)
- Dapper (>= 2.0.123)
- DistributedLock.SqlServer (>= 1.0.1)
- FluentValidation (>= 10.4.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 6.0.3)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Data.SqlClient (>= 4.1.0)
- Microsoft.EntityFrameworkCore.Relational (>= 6.0.3)
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.3)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 6.0.3)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 6.0.3)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
- MongoDB.Driver (>= 2.15.0)
- NEST (>= 7.17.0)
- Newtonsoft.Json (>= 13.0.1)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 6.0.3)
- Pipoburgos.SharedKernel.Application (>= 6.0.15)
- Polly (>= 7.2.3)
- RabbitMQ.Client (>= 6.2.4)
- System.CodeDom (>= 6.0.0)
- System.Data.SqlClient (>= 4.8.3)
- System.DirectoryServices (>= 6.0.0)
- System.Runtime.Extensions (>= 4.3.1)
- System.Text.Encoding.CodePages (>= 6.0.0)
- System.Text.Json (>= 6.0.2)
NuGet packages (11)
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.10.3 | 379 | 11/5/2024 |
8.0.10.2 | 371 | 11/1/2024 |
8.0.10.1 | 382 | 10/16/2024 |
8.0.7.3 | 338 | 7/27/2024 |
8.0.7.2 | 455 | 7/15/2024 |
8.0.6.2 | 485 | 6/5/2024 |
8.0.6.1 | 513 | 5/30/2024 |
8.0.5.1 | 456 | 5/14/2024 |
8.0.4.8 | 526 | 5/11/2024 |
8.0.4.7 | 466 | 5/1/2024 |
8.0.4.6 | 471 | 4/29/2024 |
8.0.4.5 | 496 | 4/27/2024 |
8.0.4.4 | 504 | 4/27/2024 |
8.0.4.3 | 534 | 4/26/2024 |
8.0.4.2 | 467 | 4/26/2024 |
8.0.4.1 | 509 | 4/20/2024 |
8.0.3.5 | 602 | 3/25/2024 |
8.0.3.4 | 596 | 3/14/2024 |
8.0.3.3 | 546 | 3/14/2024 |
8.0.3.2 | 511 | 3/13/2024 |
8.0.3.1 | 559 | 3/13/2024 |
8.0.2.6 | 606 | 2/15/2024 |
8.0.2.5 | 643 | 2/15/2024 |
8.0.2.4 | 630 | 2/15/2024 |
8.0.2.3 | 608 | 2/14/2024 |
8.0.2.2 | 641 | 2/14/2024 |
8.0.2.1 | 587 | 2/14/2024 |
8.0.0.8 | 716 | 1/29/2024 |
8.0.0.7 | 599 | 1/26/2024 |
8.0.0.6 | 626 | 1/26/2024 |
8.0.0.5 | 676 | 1/16/2024 |
8.0.0.4 | 716 | 12/29/2023 |
8.0.0.3 | 740 | 12/21/2023 |
8.0.0.2 | 724 | 12/13/2023 |
8.0.0.2-rc.3 | 141 | 10/25/2023 |
8.0.0.2-rc.2 | 69 | 10/6/2023 |
8.0.0.1 | 766 | 11/19/2023 |
8.0.0.1-rc.1 | 72 | 9/25/2023 |
8.0.0 | 721 | 11/15/2023 |
7.3.13.1 | 773 | 10/25/2023 |
7.3.11.4 | 823 | 10/9/2023 |
7.3.11.3 | 769 | 10/5/2023 |
7.3.11.2 | 852 | 9/21/2023 |
7.3.11.1 | 864 | 9/13/2023 |
7.3.10.1 | 942 | 9/11/2023 |
7.2.10.3 | 936 | 9/6/2023 |
7.2.10.2 | 956 | 9/1/2023 |
7.2.10.1 | 873 | 8/29/2023 |
7.1.10.5 | 855 | 8/24/2023 |
7.1.10.4 | 847 | 8/23/2023 |
7.1.10.3 | 1,029 | 8/20/2023 |
7.1.10.2 | 969 | 8/20/2023 |
7.1.10.1 | 1,010 | 8/20/2023 |
7.0.10.4 | 1,151 | 8/18/2023 |
7.0.10.3 | 214 | 8/17/2023 |
7.0.10.2 | 210 | 8/16/2023 |
7.0.10.1 | 212 | 8/9/2023 |
7.0.9.3 | 216 | 8/2/2023 |
7.0.9.2 | 193 | 8/2/2023 |
7.0.9.1 | 186 | 8/2/2023 |
7.0.8.2 | 233 | 7/11/2023 |
7.0.8.1 | 253 | 6/27/2023 |
7.0.7.3 | 232 | 6/21/2023 |
7.0.7.2 | 242 | 6/19/2023 |
7.0.7.1 | 253 | 6/14/2023 |
7.0.5.11 | 243 | 6/13/2023 |
7.0.5.10 | 192 | 6/12/2023 |
7.0.5.9 | 238 | 6/12/2023 |
7.0.5.8 | 219 | 5/26/2023 |
7.0.5.7 | 223 | 5/26/2023 |
7.0.5.6 | 212 | 5/22/2023 |
7.0.5.5 | 235 | 5/18/2023 |
7.0.5.4 | 226 | 5/18/2023 |
7.0.5.3 | 310 | 4/22/2023 |
7.0.5.2 | 292 | 4/13/2023 |
7.0.5.1 | 260 | 4/13/2023 |
7.0.5 | 290 | 4/13/2023 |
7.0.4 | 354 | 3/30/2023 |
7.0.3 | 376 | 3/6/2023 |
7.0.2 | 485 | 2/2/2023 |
7.0.1 | 448 | 12/19/2022 |
7.0.0 | 659 | 11/14/2022 |
6.0.54 | 710 | 10/21/2022 |
6.0.53 | 689 | 10/20/2022 |
6.0.52 | 689 | 10/6/2022 |
6.0.51 | 664 | 10/5/2022 |
6.0.50 | 727 | 9/30/2022 |
6.0.49 | 771 | 9/27/2022 |
6.0.48 | 741 | 9/22/2022 |
6.0.47 | 795 | 9/20/2022 |
6.0.46 | 806 | 8/27/2022 |
6.0.45 | 814 | 8/26/2022 |
6.0.44 | 790 | 8/26/2022 |
6.0.43 | 808 | 8/23/2022 |
6.0.42 | 764 | 8/23/2022 |
6.0.41 | 793 | 8/16/2022 |
6.0.40 | 785 | 8/16/2022 |
6.0.39 | 823 | 8/4/2022 |
6.0.38 | 797 | 8/4/2022 |
6.0.37 | 800 | 8/4/2022 |
6.0.36 | 791 | 8/4/2022 |
6.0.35 | 802 | 8/4/2022 |
6.0.34 | 840 | 8/3/2022 |
6.0.33 | 801 | 8/3/2022 |
6.0.32 | 840 | 8/3/2022 |
6.0.31 | 795 | 8/3/2022 |
6.0.29 | 866 | 7/22/2022 |
6.0.28 | 841 | 7/14/2022 |
6.0.27 | 861 | 7/12/2022 |
6.0.26 | 848 | 7/12/2022 |
6.0.25 | 869 | 6/23/2022 |
6.0.24 | 880 | 6/23/2022 |
6.0.23 | 833 | 6/22/2022 |
6.0.22 | 856 | 6/22/2022 |
6.0.21 | 852 | 6/21/2022 |
6.0.20 | 891 | 5/26/2022 |
6.0.19 | 872 | 5/13/2022 |
6.0.17 | 930 | 5/10/2022 |
6.0.16 | 909 | 4/27/2022 |
6.0.15 | 969 | 3/18/2022 |
6.0.14 | 911 | 3/16/2022 |
6.0.13 | 1,043 | 2/25/2022 |
6.0.12 | 961 | 2/25/2022 |
6.0.11 | 1,028 | 2/2/2022 |
6.0.10 | 1,005 | 1/24/2022 |
6.0.9 | 1,017 | 1/24/2022 |
6.0.8 | 997 | 1/24/2022 |
6.0.7 | 1,000 | 1/24/2022 |
6.0.6 | 984 | 1/20/2022 |
6.0.5 | 1,022 | 1/19/2022 |
6.0.4 | 764 | 12/30/2021 |
6.0.3 | 871 | 12/14/2021 |
6.0.2 | 867 | 12/14/2021 |
6.0.1 | 934 | 11/30/2021 |
6.0.0 | 2,600 | 11/26/2021 |
6.0.0-rc3 | 265 | 11/16/2021 |
6.0.0-rc2 | 252 | 11/15/2021 |
6.0.0-rc1 | 390 | 11/10/2021 |
5.0.41 | 847 | 10/31/2021 |
5.0.40 | 779 | 10/20/2021 |
5.0.39 | 796 | 10/8/2021 |
5.0.35 | 837 | 10/6/2021 |
5.0.34 | 819 | 10/6/2021 |
5.0.33 | 796 | 10/5/2021 |
5.0.32 | 745 | 10/5/2021 |
5.0.31 | 791 | 10/4/2021 |
5.0.30 | 701 | 10/4/2021 |
5.0.29 | 860 | 10/2/2021 |
5.0.28 | 805 | 10/2/2021 |
5.0.27 | 771 | 10/2/2021 |
5.0.26 | 692 | 10/2/2021 |
5.0.25 | 745 | 9/28/2021 |
5.0.24 | 730 | 9/22/2021 |
5.0.23 | 860 | 9/11/2021 |
5.0.22 | 818 | 9/10/2021 |
5.0.21 | 777 | 8/29/2021 |
5.0.20 | 768 | 8/9/2021 |
5.0.19 | 848 | 7/21/2021 |
5.0.18 | 890 | 1/10/2021 |
5.0.17 | 836 | 12/30/2020 |
5.0.16 | 848 | 12/21/2020 |
5.0.15 | 861 | 12/19/2020 |
5.0.14 | 868 | 12/19/2020 |
5.0.13 | 892 | 12/18/2020 |
5.0.12 | 816 | 12/12/2020 |
5.0.11 | 823 | 12/10/2020 |
5.0.10 | 823 | 12/9/2020 |
5.0.9 | 731 | 12/9/2020 |
5.0.8 | 742 | 12/9/2020 |
5.0.7 | 770 | 12/9/2020 |
5.0.6 | 860 | 12/7/2020 |
5.0.5 | 748 | 12/7/2020 |
5.0.4 | 786 | 12/7/2020 |
5.0.3 | 843 | 11/24/2020 |
5.0.2 | 824 | 11/24/2020 |
5.0.1 | 790 | 11/18/2020 |
5.0.0 | 828 | 11/14/2020 |