Skip to content

Commit

Permalink
Merged PR 8150: Added new Filter Feature + More repository Result ext…
Browse files Browse the repository at this point in the history
…ensions + nuget updates
  • Loading branch information
vip32 committed Oct 23, 2024
1 parent 1ab13be commit b9dc28e
Show file tree
Hide file tree
Showing 164 changed files with 12,624 additions and 1,549 deletions.
12 changes: 12 additions & 0 deletions BridgingIT.DevKit.sln
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Infrastructure.AutoMapper", "src\Infrastructure.AutoMapper\Infrastructure.AutoMapper.csproj", "{B4D8B3F4-A9EA-4F74-A9F8-D7F15F45946C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{16A3992B-4AAB-482C-AF16-A3434D9716A8}"
ProjectSection(SolutionItems) = preProject
docs\features-filtering.md = docs\features-filtering.md
docs\features-commands.md = docs\features-commands.md
docs\features-messaging.md = docs\features-messaging.md
docs\features-queries.md = docs\features-queries.md
docs\features-modules.md = docs\features-modules.md
docs\features-jobscheduling.md = docs\features-jobscheduling.md
docs\features-startuptasks.md = docs\features-startuptasks.md
docs\features-documentstorage.md = docs\features-documentstorage.md
docs\features-domain-repositories.md = docs\features-domain-repositories.md
docs\features-results.md = docs\features-results.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Infrastructure.EntityFramework.EventSourcing.SqlServer", "src\Infrastructure.EntityFramework.EventSourcing.SqlServer\Infrastructure.EntityFramework.EventSourcing.SqlServer.csproj", "{F8BD56DD-C6F9-4853-9E09-F761F3CD2051}"
EndProject
Expand Down
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<PackageVersion Include="Mapster.DependencyInjection" Version="1.0.1" />
<PackageVersion Include="MediatR" Version="12.4.1" />
<PackageVersion Include="MediatR.Contracts" Version="2.0.1" />
<PackageVersion Include="MessagePack" Version="2.5.172" />
<PackageVersion Include="MessagePack" Version="2.5.187" />
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageVersion Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="8.0.10" />
Expand Down Expand Up @@ -78,10 +78,10 @@
<PackageVersion Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Primitives" Version="8.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageVersion Include="Microsoft.Playwright" Version="1.47.0" />
<PackageVersion Include="Microsoft.Playwright.NUnit" Version="1.47.0" />
<PackageVersion Include="Microsoft.Playwright" Version="1.48.0" />
<PackageVersion Include="Microsoft.Playwright.NUnit" Version="1.48.0" />
<PackageVersion Include="MinVer" Version="6.0.0" />
<PackageVersion Include="MudBlazor" Version="7.12.1" />
<PackageVersion Include="MudBlazor" Version="7.13.0" />
<PackageVersion Include="NBuilder" Version="6.1.0" />
<PackageVersion Include="NSubstitute" Version="5.1.0" />
<PackageVersion Include="NSwag.ApiDescription.Client" Version="14.1.0" />
Expand All @@ -105,7 +105,7 @@
<PackageVersion Include="Quartz.Serialization.Json" Version="3.13.0" />
<PackageVersion Include="RabbitMQ.Client" Version="6.8.1" />
<PackageVersion Include="Scrutor" Version="4.2.2" />
<PackageVersion Include="Serilog" Version="4.0.2" />
<PackageVersion Include="Serilog" Version="4.1.0" />
<PackageVersion Include="Serilog.AspNetCore" Version="8.0.3" />
<PackageVersion Include="Serilog.Enrichers.Environment" Version="3.0.1" />
<PackageVersion Include="Serilog.Enrichers.ShortTypeName" Version="1.1.0" />
Expand Down
25 changes: 18 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ the [RELEASES](https://raw.githubusercontent.com/bridgingIT/bITdevKit/main/RELEA

Join us in advancing the world of software development with the bITDevKit!

<!-- TOC -->
* [Supported patterns, elements:](#supported-patterns-elements)
* [Features (excerpt):](#features-excerpt)
* [Libraries used (excerpt):](#libraries-used-excerpt)
* [Example projects](#example-projects)
* [Collaboration](#collaboration)
<!-- TOC -->

Supported patterns, elements:
--------------------------------
Expand All @@ -31,7 +38,7 @@ Supported patterns, elements:
- ValueObjects
- TypedId
- DomainEvents
- BusinesRules, Check
- DomainRules/Policies
- Repository
- Specifications
- Commands/Queries
Expand All @@ -43,15 +50,19 @@ Supported patterns, elements:
Features (excerpt):
-------------------------------------

- [Results](./docs/features-results.md)
- [Commands](./docs/features-commands.md) & [Queries](./docs/features-queries.md)
- [Domain Model](./docs/features-domain-models.md)
- [Domain Repositories](./docs/features-domain-repositories.md)
- [Modules](./docs/features-modules.md)
- [Filtering](./docs/features-filtering.md)
- [Messaging](./docs/features-messaging.md)
- [JobScheduling](./docs/features-jobscheduling.md)
- [StartupTasks](./docs/features-startuptasks.md)
- [DocumentStorage](./docs/features-documentstorage.md)
- EventStore (CQRS)
- Job Scheduling
- Storage
- Documents
- Files (TODO)
- Caching
- Messaging
- Queuing (TODO)
- Modules

Libraries used (excerpt):
-------------------------------------
Expand Down
18 changes: 18 additions & 0 deletions docs/features-commands.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Commands Feature Documentation

<!-- TOC -->

* [Overview](#overview)
* [Usage](#usage)

<!-- TOC -->

## Overview

### Challenges

### Solution

### Use Cases

## Usage
18 changes: 18 additions & 0 deletions docs/features-documentstorage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# DocumentStorage Feature Documentation

<!-- TOC -->

* [Overview](#overview)
* [Usage](#usage)

<!-- TOC -->

## Overview

### Challenges

### Solution

### Use Cases

## Usage
24 changes: 24 additions & 0 deletions docs/features-domain-models.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Domain Models Feature Documentation

<!-- TOC -->

* [Overview](#overview)
* [Aggregates](#aggregates)
* [Specifications](#specifications)
* [Entities](#entities)
* [Events](#events)
* [ValueObjects](#valueobjects)
* [TypedIds](#typedids)
* [Rules/Policies](#rules-policies)

<!-- TOC -->

## Overview

### Challenges

### Solution

### Use Cases

outbox
18 changes: 18 additions & 0 deletions docs/features-domain-repositories.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Domain Repositories Feature Documentation

<!-- TOC -->

* [Overview](#overview)
* [Usage](#usage)

<!-- TOC -->

## Overview

### Challenges

### Solution

### Use Cases

## Usage
Loading

0 comments on commit b9dc28e

Please sign in to comment.