diff --git a/build-all.ps1 b/build-all.ps1 index 31a2c15e26..1ebcc3be8a 100644 --- a/build-all.ps1 +++ b/build-all.ps1 @@ -14,7 +14,8 @@ $solutionPaths = ( "modules/account", "modules/docs", "modules/blogging", - "modules/audit-logging" + "modules/audit-logging", + "modules/background-jobs" ) # Build all solutions diff --git a/build-test-all.ps1 b/build-test-all.ps1 index da0bd1e360..19aad0c90f 100644 --- a/build-test-all.ps1 +++ b/build-test-all.ps1 @@ -13,7 +13,9 @@ $solutionsPaths = ( "modules/tenant-management", "modules/account", "modules/docs", - "modules/blogging" + "modules/blogging", + "modules/audit-logging", + "modules/background-jobs" ) # List of test projects @@ -62,7 +64,13 @@ $testProjectPaths = ( "modules/setting-management/test/Volo.Abp.SettingManagement.Tests", "modules/tenant-management/test/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests", "modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests", - "modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests" + "modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests", + "modules/audit-logging/test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests", + "modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests", + "modules/audit-logging/test/Volo.Abp.AuditLogging.Tests", + "modules/background-jobs/test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests", + "modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests", + "modules/background-jobs/test/Volo.Abp.BackgroundJobs.Domain.Tests" ) # Build all solutions diff --git a/nupkg/common.ps1 b/nupkg/common.ps1 index f0aa32664a..effbb448a4 100644 --- a/nupkg/common.ps1 +++ b/nupkg/common.ps1 @@ -134,5 +134,17 @@ $projects = ( "modules/blogging/src/Volo.Blogging.EntityFrameworkCore", "modules/blogging/src/Volo.Blogging.HttpApi", "modules/blogging/src/Volo.Blogging.HttpApi.Client", - "modules/blogging/src/Volo.Blogging.Web" + "modules/blogging/src/Volo.Blogging.Web", + + # modules/audit-logging + "modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared", + "modules/audit-logging/src/Volo.Abp.AuditLogging.Domain", + "modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore", + "modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB", + + # modules/background-jobs + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared", + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain", + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore", + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB" ) \ No newline at end of file