Browse Source

Add audit-logging and background-jobs to build scripts.

pull/395/head
Halil ibrahim Kalkan 8 years ago
parent
commit
1bc3facd74
  1. 3
      build-all.ps1
  2. 12
      build-test-all.ps1
  3. 14
      nupkg/common.ps1

3
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

12
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

14
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"
)
Loading…
Cancel
Save