Skip to content

Commit 7a64085

Browse files
committed
Merge branch 'dev' into issue-24564
2 parents 839686e + ed10e56 commit 7a64085

File tree

112 files changed

+1961
-383
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+1961
-383
lines changed

.github/workflows/auto-pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
branch: auto-merge/rel-10-1/${{github.run_number}}
2727
title: Merge branch dev with rel-10.1
2828
body: This PR generated automatically to merge dev with rel-10.1. Please review the changed files before merging to prevent any errors that may occur.
29-
reviewers: maliming
3029
draft: true
3130
token: ${{ github.token }}
3231
- name: Merge Pull Request

ai-rules/common/application-layer.mdc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
---
22
description: "ABP Application Services, DTOs, validation, and error handling patterns"
3-
globs: "**/*.Application/**/*.cs,**/Application/**/*.cs,**/*AppService*.cs,**/*Dto*.cs"
3+
globs:
4+
- "**/*.Application/**/*.cs"
5+
- "**/Application/**/*.cs"
6+
- "**/*AppService*.cs"
7+
- "**/*Dto*.cs"
48
alwaysApply: false
59
---
610

ai-rules/common/authorization.mdc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
description: "ABP permission system and authorization patterns"
3-
globs: "**/*Permission*.cs,**/*AppService*.cs,**/*Controller*.cs"
3+
globs:
4+
- "**/*Permission*.cs"
5+
- "**/*AppService*.cs"
6+
- "**/*Controller*.cs"
47
alwaysApply: false
58
---
69

ai-rules/common/cli-commands.mdc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
description: "ABP CLI commands: generate-proxy, install-libs, add-package-ref, new-module, install-module, update, clean, suite generate (CRUD pages)"
3-
globs: "**/*.csproj,**/appsettings*.json"
3+
globs:
4+
- "**/*.csproj"
5+
- "**/appsettings*.json"
46
alwaysApply: false
57
---
68

ai-rules/common/ddd-patterns.mdc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
description: "ABP DDD patterns - Entities, Aggregate Roots, Repositories, Domain Services"
3-
globs: "**/*.Domain/**/*.cs,**/Domain/**/*.cs,**/Entities/**/*.cs"
3+
globs:
4+
- "**/*.Domain/**/*.cs"
5+
- "**/Domain/**/*.cs"
6+
- "**/Entities/**/*.cs"
47
alwaysApply: false
58
---
69

ai-rules/common/dependency-rules.mdc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
description: "ABP layer dependency rules and project structure guardrails"
3-
globs: "**/*.csproj,**/*Module*.cs"
3+
globs:
4+
- "**/*.csproj"
5+
- "**/*Module*.cs"
46
alwaysApply: false
57
---
68

ai-rules/common/development-flow.mdc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
---
22
description: "ABP development workflow - adding features, entities, and migrations"
3-
globs: "**/*AppService*.cs,**/*Application*/**/*.cs,**/*Application.Contracts*/**/*.cs,**/*Dto*.cs,**/*DbContext*.cs,**/*.EntityFrameworkCore/**/*.cs,**/*.MongoDB/**/*.cs,**/*Permission*.cs"
3+
globs:
4+
- "**/*AppService*.cs"
5+
- "**/*Application*/**/*.cs"
6+
- "**/*Application.Contracts*/**/*.cs"
7+
- "**/*Dto*.cs"
8+
- "**/*DbContext*.cs"
9+
- "**/*.EntityFrameworkCore/**/*.cs"
10+
- "**/*.MongoDB/**/*.cs"
11+
- "**/*Permission*.cs"
412
alwaysApply: false
513
---
614

ai-rules/common/infrastructure.mdc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
---
22
description: "ABP infrastructure services - Settings, Features, Caching, Events, Background Jobs"
3-
globs: "**/*Setting*.cs,**/*Feature*.cs,**/*Cache*.cs,**/*Event*.cs,**/*Job*.cs"
3+
globs:
4+
- "**/*Setting*.cs"
5+
- "**/*Feature*.cs"
6+
- "**/*Cache*.cs"
7+
- "**/*Event*.cs"
8+
- "**/*Job*.cs"
49
alwaysApply: false
510
---
611

ai-rules/common/multi-tenancy.mdc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
description: "ABP Multi-Tenancy patterns - tenant-aware entities, data isolation, and tenant switching"
3-
globs: "**/*Tenant*.cs,**/*MultiTenant*.cs,**/Entities/**/*.cs"
3+
globs:
4+
- "**/*Tenant*.cs"
5+
- "**/*MultiTenant*.cs"
6+
- "**/Entities/**/*.cs"
47
alwaysApply: false
58
---
69

ai-rules/data/ef-core.mdc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
description: "ABP Entity Framework Core patterns - DbContext, migrations, repositories"
3-
globs: "**/*.EntityFrameworkCore/**/*.cs,**/EntityFrameworkCore/**/*.cs,**/*DbContext*.cs"
3+
globs:
4+
- "**/*.EntityFrameworkCore/**/*.cs"
5+
- "**/EntityFrameworkCore/**/*.cs"
6+
- "**/*DbContext*.cs"
47
alwaysApply: false
58
---
69

0 commit comments

Comments
 (0)