Pipoburgos.SharedKernel.Api
9.0.8.2
dotnet add package Pipoburgos.SharedKernel.Api --version 9.0.8.2
NuGet\Install-Package Pipoburgos.SharedKernel.Api -Version 9.0.8.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.Api" Version="9.0.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pipoburgos.SharedKernel.Api" Version="9.0.8.2" />
<PackageReference Include="Pipoburgos.SharedKernel.Api" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Pipoburgos.SharedKernel.Api --version 9.0.8.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Pipoburgos.SharedKernel.Api, 9.0.8.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.
#:package Pipoburgos.SharedKernel.Api@9.0.8.2
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Pipoburgos.SharedKernel.Api&version=9.0.8.2
#tool nuget:?package=Pipoburgos.SharedKernel.Api&version=9.0.8.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
The following code demonstrates basic usage of SharedKernel api.
appsettings.json
{
"AllowedHosts": "",
"Origins": [
"https://localhost/"
],
"SmtpSettings": {
"MailServer": "smtp",
"MailPort": 587,
"SenderName": "SharedKernel@SharedKernel.com",
"Sender": "SharedKernel@SharedKernel.com",
"Password": "SharedKernel"
},
"OpenApiOptions": {
"Title": "SharedKernel",
"AppName": "SharedKernel",
"Name": "SharedKernel",
"XmlDocumentationFile": "SharedKernel.Api.xml"
},
"ConnectionStrings": {
"PaymentConnection": "Server=.;Database=Payment;Trusted_Connection=True;MultipleActiveResultSets=true;Application Name=Payment;",
"PurchasingConnection": "Server=.;Database=Purchasing;Trusted_Connection=True;MultipleActiveResultSets=true;Application Name=Purchasing;"
},
"RabbitMq": {
"Username": "guest",
"Password": "guest",
"Hostname": "localhost",
"port": "5672"
},
"RedisCacheOptions": {
"ConnectionString": "localhost:6379",
"Configuration": "localhost:6379",
"InstanceName": "sharedKernel"
},
}
Startup.cs
See register module information
public class Startup
{
public class Startup
{
private const string CorsPolicy = "CorsPolicy";
private IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public void ConfigureServices(IServiceCollection services)
{
services
.AddSharedKernel()
.AddSharedKernelApi<FluentApiSampleValidator>(CorsPolicy, Configuration.GetSection("Origins").Get<string[]>())
.AddSharedKernelHealthChecks()
.AddSharedKernelOpenApi(Configuration)
// Cache
.AddRedisDistributedCache(Configuration)
// .AddInMemoryCache()
.AddInMemoryCommandBus()
.AddInMemoryQueryBus()
// Event bus
.AddRabbitMqEventBus(Configuration)
// .AddInMemoryEventBus()
//.AddRedisEventBus(Configuration)
// Add modules
.AddPaymentModule(Configuration, "PaymentConnection")
.AddPurchasingModule(Configuration, "PurchasingConnection")
// Register all domain event subscribers
.AddDomainEventSubscribers();
}
public void Configure(IApplicationBuilder app, IOptions<OpenApiOptions> options)
{
// Other usages
app.UseCors(CorsPolicy);
// Other usages
app
.UseEndpoints(endpoints =>
{
endpoints.MapHealthChecks("/health", new HealthCheckOptions
{
ResponseWriter = UIResponseWriter.WriteHealthCheckUIResponse
});
endpoints.MapControllers();
})
.UseSharedKernelMetrics()
.UseSharedKernelOpenApi(options);
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- AspNetCore.HealthChecks.UI.Client (>= 9.0.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 8.0.19)
- Microsoft.AspNetCore.Authentication.Negotiate (>= 8.0.19)
- Microsoft.Extensions.Logging.Debug (>= 9.0.8)
- Pipoburgos.SharedKernel.Infrastructure (>= 9.0.8.2)
- prometheus-net.AspNetCore (>= 8.2.1)
- Swashbuckle.AspNetCore.SwaggerUI (>= 9.0.3)
- System.Text.Encodings.Web (>= 9.0.8)
- Unchase.Swashbuckle.AspNetCore.Extensions (>= 2.7.2)
-
net9.0
- AspNetCore.HealthChecks.UI.Client (>= 9.0.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 9.0.8)
- Microsoft.AspNetCore.Authentication.Negotiate (>= 9.0.8)
- Microsoft.Extensions.Logging.Debug (>= 9.0.8)
- Pipoburgos.SharedKernel.Infrastructure (>= 9.0.8.2)
- prometheus-net.AspNetCore (>= 8.2.1)
- Swashbuckle.AspNetCore.SwaggerUI (>= 9.0.3)
- System.Text.Encodings.Web (>= 9.0.8)
- Unchase.Swashbuckle.AspNetCore.Extensions (>= 2.7.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Pipoburgos.SharedKernel.Api:
Package | Downloads |
---|---|
Pipoburgos.SharedKernel.Testing
C# Testing |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
9.0.8.2 | 118 | 8/20/2025 |
9.0.8.1 | 211 | 8/6/2025 |
9.0.7.1 | 160 | 7/9/2025 |
9.0.6.1 | 165 | 6/16/2025 |
9.0.5.1 | 178 | 6/4/2025 |
9.0.4.2 | 186 | 5/7/2025 |
9.0.4.1 | 175 | 5/7/2025 |
9.0.3.3 | 175 | 4/6/2025 |
9.0.3.2 | 510 | 3/26/2025 |
9.0.3.1 | 187 | 3/17/2025 |
9.0.2.1 | 167 | 2/12/2025 |
9.0.0.5 | 244 | 12/4/2024 |
9.0.0.4 | 143 | 12/2/2024 |
9.0.0.3 | 136 | 11/27/2024 |
9.0.0.2 | 151 | 11/17/2024 |
9.0.0.1 | 146 | 11/16/2024 |
8.0.10.3 | 162 | 11/5/2024 |
8.0.10.2 | 159 | 11/1/2024 |
8.0.10.1 | 154 | 10/16/2024 |
8.0.7.3 | 183 | 7/27/2024 |
8.0.7.2 | 170 | 7/15/2024 |
8.0.6.2 | 204 | 6/5/2024 |
8.0.6.1 | 223 | 5/30/2024 |
8.0.5.1 | 228 | 5/14/2024 |
8.0.4.8 | 195 | 5/11/2024 |
8.0.4.7 | 189 | 5/1/2024 |
8.0.4.6 | 179 | 4/29/2024 |
8.0.4.5 | 179 | 4/27/2024 |
8.0.4.4 | 182 | 4/27/2024 |
8.0.4.3 | 177 | 4/26/2024 |
8.0.4.2 | 154 | 4/26/2024 |
8.0.4.1 | 218 | 4/20/2024 |
8.0.3.5 | 270 | 3/25/2024 |
8.0.3.4 | 214 | 3/14/2024 |
8.0.3.3 | 171 | 3/14/2024 |
8.0.3.2 | 179 | 3/13/2024 |
8.0.3.1 | 179 | 3/13/2024 |
8.0.2.6 | 192 | 2/15/2024 |
8.0.2.5 | 183 | 2/15/2024 |
8.0.2.4 | 182 | 2/15/2024 |
8.0.2.3 | 183 | 2/14/2024 |
8.0.2.2 | 176 | 2/14/2024 |
8.0.2.1 | 189 | 2/14/2024 |
8.0.0.8 | 273 | 1/29/2024 |
8.0.0.7 | 178 | 1/26/2024 |
8.0.0.6 | 171 | 1/26/2024 |
8.0.0.5 | 241 | 1/16/2024 |
8.0.0.4 | 217 | 12/29/2023 |
8.0.0.3 | 214 | 12/21/2023 |
8.0.0.2 | 191 | 12/13/2023 |
8.0.0.2-rc.3 | 165 | 10/25/2023 |
8.0.0.2-rc.2 | 105 | 10/5/2023 |
8.0.0.1 | 168 | 11/19/2023 |
8.0.0.1-rc.1 | 98 | 9/25/2023 |
8.0.0 | 148 | 11/15/2023 |
7.3.13.1 | 139 | 10/25/2023 |
7.3.11.4 | 154 | 10/9/2023 |
7.3.11.3 | 138 | 10/5/2023 |
7.3.11.2 | 156 | 9/21/2023 |
7.3.11.1 | 141 | 9/13/2023 |
7.3.10.1 | 144 | 9/11/2023 |
7.2.10.3 | 174 | 9/6/2023 |
7.2.10.2 | 163 | 9/1/2023 |
7.2.10.1 | 184 | 8/29/2023 |
7.1.10.5 | 145 | 8/24/2023 |
7.1.10.4 | 149 | 8/23/2023 |
7.1.10.3 | 151 | 8/20/2023 |
7.1.10.2 | 151 | 8/20/2023 |
7.1.10.1 | 159 | 8/20/2023 |
7.0.10.4 | 162 | 8/18/2023 |
7.0.10.3 | 151 | 8/17/2023 |
7.0.10.2 | 155 | 8/16/2023 |
7.0.10.1 | 178 | 8/9/2023 |
7.0.9.3 | 168 | 8/2/2023 |
7.0.9.2 | 160 | 8/2/2023 |
7.0.9.1 | 159 | 8/2/2023 |
7.0.8.2 | 174 | 7/11/2023 |
7.0.8.1 | 269 | 6/27/2023 |
7.0.7.3 | 252 | 6/21/2023 |
7.0.7.2 | 256 | 6/19/2023 |
7.0.7.1 | 266 | 6/14/2023 |
7.0.5.11 | 284 | 6/13/2023 |
7.0.5.10 | 262 | 6/12/2023 |
7.0.5.9 | 255 | 6/12/2023 |
7.0.5.8 | 261 | 5/26/2023 |
7.0.5.7 | 260 | 5/26/2023 |
7.0.5.6 | 260 | 5/22/2023 |
7.0.5.5 | 265 | 5/18/2023 |
7.0.5.4 | 270 | 5/18/2023 |
7.0.5.3 | 330 | 4/22/2023 |
7.0.5.2 | 312 | 4/13/2023 |
7.0.5.1 | 298 | 4/13/2023 |
7.0.5 | 297 | 4/13/2023 |
7.0.4 | 339 | 3/30/2023 |
7.0.3 | 366 | 3/6/2023 |
7.0.2 | 471 | 2/2/2023 |
7.0.1 | 450 | 12/19/2022 |
7.0.0 | 565 | 11/14/2022 |
6.0.54 | 537 | 10/21/2022 |
6.0.53 | 533 | 10/20/2022 |
6.0.52 | 512 | 10/6/2022 |
6.0.51 | 520 | 10/5/2022 |
6.0.50 | 532 | 9/30/2022 |
6.0.49 | 604 | 9/27/2022 |
6.0.48 | 577 | 9/22/2022 |
6.0.47 | 585 | 9/20/2022 |
6.0.46 | 595 | 8/27/2022 |
6.0.45 | 631 | 8/26/2022 |
6.0.44 | 577 | 8/26/2022 |
6.0.43 | 618 | 8/23/2022 |
6.0.42 | 563 | 8/23/2022 |
6.0.41 | 599 | 8/16/2022 |
6.0.40 | 588 | 8/16/2022 |
6.0.39 | 610 | 8/4/2022 |
6.0.38 | 616 | 8/4/2022 |
6.0.37 | 620 | 8/4/2022 |
6.0.36 | 592 | 8/4/2022 |
6.0.35 | 582 | 8/4/2022 |
6.0.34 | 614 | 8/3/2022 |
6.0.33 | 605 | 8/3/2022 |
6.0.32 | 644 | 8/3/2022 |
6.0.31 | 608 | 8/3/2022 |
6.0.29 | 670 | 7/22/2022 |
6.0.28 | 646 | 7/14/2022 |
6.0.27 | 671 | 7/12/2022 |
6.0.26 | 673 | 7/12/2022 |
6.0.25 | 673 | 6/23/2022 |
6.0.24 | 668 | 6/23/2022 |
6.0.23 | 625 | 6/22/2022 |
6.0.22 | 644 | 6/22/2022 |
6.0.21 | 646 | 6/21/2022 |
6.0.20 | 673 | 5/26/2022 |
6.0.19 | 652 | 5/13/2022 |
6.0.17 | 700 | 5/10/2022 |
6.0.16 | 697 | 4/27/2022 |
6.0.15 | 748 | 3/18/2022 |
6.0.14 | 672 | 3/16/2022 |
6.0.13 | 752 | 2/25/2022 |
6.0.12 | 732 | 2/25/2022 |
6.0.11 | 746 | 2/2/2022 |
6.0.10 | 759 | 1/24/2022 |
6.0.9 | 745 | 1/24/2022 |
6.0.8 | 725 | 1/24/2022 |
6.0.7 | 768 | 1/24/2022 |
6.0.6 | 729 | 1/20/2022 |
6.0.5 | 760 | 1/19/2022 |
6.0.4 | 499 | 12/30/2021 |
6.0.3 | 630 | 12/14/2021 |
6.0.2 | 521 | 12/14/2021 |
6.0.1 | 738 | 11/30/2021 |
6.0.0 | 2,421 | 11/26/2021 |
6.0.0-rc3 | 332 | 11/16/2021 |
6.0.0-rc2 | 327 | 11/15/2021 |
6.0.0-rc1 | 384 | 11/10/2021 |
5.0.41 | 659 | 10/31/2021 |
5.0.40 | 671 | 10/20/2021 |
5.0.39 | 698 | 10/8/2021 |
5.0.35 | 673 | 10/6/2021 |
5.0.34 | 641 | 10/6/2021 |
5.0.33 | 633 | 10/5/2021 |
5.0.32 | 589 | 10/5/2021 |
5.0.31 | 678 | 10/4/2021 |
5.0.30 | 565 | 10/4/2021 |
5.0.29 | 748 | 10/2/2021 |
5.0.28 | 683 | 10/2/2021 |
5.0.27 | 628 | 10/2/2021 |
5.0.26 | 597 | 10/2/2021 |
5.0.25 | 616 | 9/28/2021 |
5.0.24 | 651 | 9/22/2021 |
5.0.23 | 721 | 9/11/2021 |
5.0.22 | 676 | 9/10/2021 |
5.0.21 | 637 | 8/29/2021 |
5.0.20 | 670 | 8/9/2021 |
5.0.19 | 721 | 7/21/2021 |
5.0.18 | 707 | 1/10/2021 |
5.0.17 | 717 | 12/30/2020 |
5.0.16 | 727 | 12/21/2020 |
5.0.15 | 765 | 12/19/2020 |
5.0.14 | 758 | 12/19/2020 |
5.0.13 | 791 | 12/18/2020 |
5.0.12 | 724 | 12/12/2020 |
5.0.11 | 706 | 12/10/2020 |
5.0.10 | 672 | 12/9/2020 |
5.0.9 | 686 | 12/9/2020 |
5.0.8 | 705 | 12/9/2020 |
5.0.7 | 707 | 12/9/2020 |
5.0.6 | 773 | 12/7/2020 |
5.0.5 | 647 | 12/7/2020 |
5.0.4 | 716 | 12/7/2020 |
5.0.3 | 747 | 11/24/2020 |
5.0.2 | 763 | 11/24/2020 |
5.0.1 | 728 | 11/18/2020 |
5.0.0 | 783 | 11/14/2020 |