Skip to content

Commit 1bc3fac

Browse files
committed
Add audit-logging and background-jobs to build scripts.
1 parent a7187dc commit 1bc3fac

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

build-all.ps1

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ $solutionPaths = (
1414
"modules/account",
1515
"modules/docs",
1616
"modules/blogging",
17-
"modules/audit-logging"
17+
"modules/audit-logging",
18+
"modules/background-jobs"
1819
)
1920

2021
# Build all solutions

build-test-all.ps1

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ $solutionsPaths = (
1313
"modules/tenant-management",
1414
"modules/account",
1515
"modules/docs",
16-
"modules/blogging"
16+
"modules/blogging",
17+
"modules/audit-logging",
18+
"modules/background-jobs"
1719
)
1820

1921
# List of test projects
@@ -62,7 +64,13 @@ $testProjectPaths = (
6264
"modules/setting-management/test/Volo.Abp.SettingManagement.Tests",
6365
"modules/tenant-management/test/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests",
6466
"modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests",
65-
"modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests"
67+
"modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests",
68+
"modules/audit-logging/test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests",
69+
"modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests",
70+
"modules/audit-logging/test/Volo.Abp.AuditLogging.Tests",
71+
"modules/background-jobs/test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests",
72+
"modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests",
73+
"modules/background-jobs/test/Volo.Abp.BackgroundJobs.Domain.Tests"
6674
)
6775

6876
# Build all solutions

nupkg/common.ps1

+13-1
Original file line numberDiff line numberDiff line change
@@ -134,5 +134,17 @@ $projects = (
134134
"modules/blogging/src/Volo.Blogging.EntityFrameworkCore",
135135
"modules/blogging/src/Volo.Blogging.HttpApi",
136136
"modules/blogging/src/Volo.Blogging.HttpApi.Client",
137-
"modules/blogging/src/Volo.Blogging.Web"
137+
"modules/blogging/src/Volo.Blogging.Web",
138+
139+
# modules/audit-logging
140+
"modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared",
141+
"modules/audit-logging/src/Volo.Abp.AuditLogging.Domain",
142+
"modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore",
143+
"modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB",
144+
145+
# modules/background-jobs
146+
"modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared",
147+
"modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain",
148+
"modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore",
149+
"modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB"
138150
)

0 commit comments

Comments
 (0)