Skip to content

Commit dfcc502

Browse files
committed
Nuget updates
1 parent c7de87c commit dfcc502

4 files changed

Lines changed: 167 additions & 347 deletions

File tree

Directory.Packages.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageVersion Include="BridgingIT.DevKit.Application.JobScheduling" Version="9.0.18" />
8-
<PackageVersion Include="BridgingIT.DevKit.Common.Mapping" Version="9.0.18" />
9-
<PackageVersion Include="BridgingIT.DevKit.Common.Utilities.Xunit" Version="9.0.18" />
10-
<PackageVersion Include="BridgingIT.DevKit.Domain" Version="9.0.18" />
11-
<PackageVersion Include="BridgingIT.DevKit.Domain.CodeGen" Version="9.0.18" />
12-
<PackageVersion Include="BridgingIT.DevKit.Infrastructure.EntityFramework" Version="9.0.18" />
13-
<PackageVersion Include="BridgingIT.DevKit.Infrastructure.EntityFramework.SqlServer" Version="9.0.18" />
14-
<PackageVersion Include="BridgingIT.DevKit.Presentation.Web" Version="9.0.18" />
15-
<PackageVersion Include="BridgingIT.DevKit.Presentation.Serilog" Version="9.0.18" />
7+
<PackageVersion Include="BridgingIT.DevKit.Application.JobScheduling" Version="9.0.19" />
8+
<PackageVersion Include="BridgingIT.DevKit.Common.Mapping" Version="9.0.19" />
9+
<PackageVersion Include="BridgingIT.DevKit.Common.Utilities.Xunit" Version="9.0.19" />
10+
<PackageVersion Include="BridgingIT.DevKit.Domain" Version="9.0.19" />
11+
<PackageVersion Include="BridgingIT.DevKit.Domain.CodeGen" Version="9.0.19" />
12+
<PackageVersion Include="BridgingIT.DevKit.Infrastructure.EntityFramework" Version="9.0.19" />
13+
<PackageVersion Include="BridgingIT.DevKit.Infrastructure.EntityFramework.SqlServer" Version="9.0.19" />
14+
<PackageVersion Include="BridgingIT.DevKit.Presentation.Web" Version="9.0.19" />
15+
<PackageVersion Include="BridgingIT.DevKit.Presentation.Serilog" Version="9.0.19" />
1616
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
1717
<PackageVersion Include="Dumpify" Version="0.6.6" />
1818
<PackageVersion Include="FluentAssertions.Web" Version="1.9.5" />

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ An application built using .NET 9 and following a Domain-Driven Design (DDD) app
66

77
## Features
88
- Modular architecture with CoreModule as an example. [Modules](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-modules.md)
9-
- Application layer with Commands (e.g., CustomerCreateCommand) and Queries (e.g., CustomerFindAllQuery, CustomerFindOneQuery) using IRequester. [Requester](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-requester-notifier.md)
10-
- Domain layer with Aggregates (Customer), Value Objects (EmailAddress, CustomerId), Enumerations (CustomerStatus), Domain Events (CustomerCreatedDomainEvent, CustomerUpdatedDomainEvent), and Business Rules (e.g., EmailShouldBeUniqueRule). [Domain](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-domain-models.md), [Rules](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-rules.md)
9+
- Application layer with Commands (e.g., CustomerCreateCommand) and Queries (e.g., CustomerFindAllQuery, CustomerFindOneQuery) using IRequester. [Requester](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-requester-notifier.md), [Commands and Queries](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-application-commands-queries.md)
10+
- Domain layer with Aggregates (Customer), Value Objects (EmailAddress, CustomerId), Enumerations (CustomerStatus), Domain Events (CustomerCreatedDomainEvent, CustomerUpdatedDomainEvent), and Business Rules (e.g., EmailShouldBeUniqueRule). [Domain](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-domain-models.md), [DomainEvents](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-domain-events.md), [Rules](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-rules.md)
1111
- Infrastructure layer with Entity Framework Core (CoreDbContext, migrations, configurations) and Generic Repositories with behaviors (logging, audit, domain event publishing). [Repositories](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-domain-repositories.md)
12-
- Presentation layer with Web API Endpoints for CRUD operations on Customers, using minimal API-style routing.
12+
- Presentation layer with Web API Endpoints for CRUD operations on Customers, using minimal API-style routing. [Endpoints](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-presentation-endpoints.md)
1313
- Startup tasks for seeding domain data (CoreDomainSeederTask). [StartupTasks](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-startuptasks.md)
1414
- Job scheduling with Quartz (e.g., CustomerExportJob). [JobScheduling](https://github.com/BridgingIT-GmbH/bITdevKit/blob/main/docs/features-jobscheduling.md)
1515
- Comprehensive testing: Unit tests (e.g., for command/query handlers, architecture rules), Integration tests (e.g., for endpoints).

src/Presentation.Web.Server/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
builder.Services.AddEndpoints<SystemEndpoints>(); // builder.Environment.IsDevelopment()
4444

4545
builder.Services.AddControllers();
46-
builder.Services.AddEndpointsApiExplorer();
47-
builder.Services.AddSwaggerGen();
4846
builder.Services.AddProblemDetails(o => Configure.ProblemDetails(o, true));
47+
builder.Services.AddEndpointsApiExplorer();
4948
builder.Services.AddOpenApi();
49+
builder.Services.AddSwaggerGen();
5050

5151
// ===============================================================================================
5252
// Configure the HTTP request pipeline

0 commit comments

Comments
 (0)