From c9277d5feaae99f46d7794561175204ef7058503 Mon Sep 17 00:00:00 2001 From: maliming Date: Fri, 12 Jul 2019 09:51:05 +0800 Subject: [PATCH] Update the contents of common.ps1 to the latest. --- nupkg/common.ps1 | 223 +++++++++++++++++++++++++---------------------- 1 file changed, 117 insertions(+), 106 deletions(-) diff --git a/nupkg/common.ps1 b/nupkg/common.ps1 index 0fed9484b0..eaea068daa 100644 --- a/nupkg/common.ps1 +++ b/nupkg/common.ps1 @@ -5,50 +5,49 @@ $rootFolder = Join-Path $packFolder "../" # List of solutions $solutions = ( "framework", - "modules/users", - "modules/setting-management", - "modules/permission-management", - "modules/feature-management", - "modules/tenant-management", - "modules/identity", - "modules/identityserver", "modules/account", "modules/audit-logging", "modules/background-jobs", "modules/blogging", + "modules/client-simulation", "modules/docs", - "modules/client-simulation" + "modules/feature-management", + "modules/identity", + "modules/identityserver", + "modules/permission-management", + "modules/setting-management", + "modules/tenant-management", + "modules/users" ) # List of projects $projects = ( - # framework - "framework/src/Volo.Abp", + # framework "framework/src/Volo.Abp.ApiVersioning.Abstractions", - "framework/src/Volo.Abp.AspNetCore", "framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer", "framework/src/Volo.Abp.AspNetCore.Authentication.OAuth", + "framework/src/Volo.Abp.AspNetCore", "framework/src/Volo.Abp.AspNetCore.MultiTenancy", - "framework/src/Volo.Abp.AspNetCore.Mvc", - "framework/src/Volo.Abp.AspNetCore.Mvc.Contracts", "framework/src/Volo.Abp.AspNetCore.Mvc.Client", - "framework/src/Volo.Abp.AspNetCore.Mvc.UI", + "framework/src/Volo.Abp.AspNetCore.Mvc.Contracts", + "framework/src/Volo.Abp.AspNetCore.Mvc", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling", + "framework/src/Volo.Abp.AspNetCore.Mvc.UI", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Dashboards", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", "framework/src/Volo.Abp.AspNetCore.Mvc.UI.Widgets", - "framework/src/Volo.Abp.AspNetCore.TestBase", + "framework/src/Volo.Abp.AspNetCore.TestBase", "framework/src/Volo.Abp.Auditing", "framework/src/Volo.Abp.Authorization", "framework/src/Volo.Abp.Autofac", "framework/src/Volo.Abp.AutoMapper", - "framework/src/Volo.Abp.BackgroundJobs", "framework/src/Volo.Abp.BackgroundJobs.Abstractions", + "framework/src/Volo.Abp.BackgroundJobs", "framework/src/Volo.Abp.BackgroundJobs.HangFire", "framework/src/Volo.Abp.BackgroundJobs.RabbitMQ", "framework/src/Volo.Abp.BackgroundWorkers", @@ -57,30 +56,32 @@ $projects = ( "framework/src/Volo.Abp.Cli.Core", "framework/src/Volo.Abp.Cli", "framework/src/Volo.Abp.Core", + "framework/src/Volo.Abp", "framework/src/Volo.Abp.Dapper", "framework/src/Volo.Abp.Data", "framework/src/Volo.Abp.Ddd.Application", "framework/src/Volo.Abp.Ddd.Domain", "framework/src/Volo.Abp.Emailing", "framework/src/Volo.Abp.EntityFrameworkCore", - "framework/src/Volo.Abp.EntityFrameworkCore.SqlServer", "framework/src/Volo.Abp.EntityFrameworkCore.MySQL", "framework/src/Volo.Abp.EntityFrameworkCore.PostgreSql", "framework/src/Volo.Abp.EntityFrameworkCore.Sqlite", + "framework/src/Volo.Abp.EntityFrameworkCore.SqlServer", "framework/src/Volo.Abp.EventBus", "framework/src/Volo.Abp.EventBus.RabbitMQ", "framework/src/Volo.Abp.Features", "framework/src/Volo.Abp.FluentValidation", "framework/src/Volo.Abp.Guids", "framework/src/Volo.Abp.HangFire", - "framework/src/Volo.Abp.Http", "framework/src/Volo.Abp.Http.Abstractions", "framework/src/Volo.Abp.Http.Client", "framework/src/Volo.Abp.Http.Client.IdentityModel", + "framework/src/Volo.Abp.Http", "framework/src/Volo.Abp.IdentityModel", "framework/src/Volo.Abp.Json", - "framework/src/Volo.Abp.Localization", + "framework/src/Volo.Abp.Ldap", "framework/src/Volo.Abp.Localization.Abstractions", + "framework/src/Volo.Abp.Localization", "framework/src/Volo.Abp.MemoryDb", "framework/src/Volo.Abp.MongoDB", "framework/src/Volo.Abp.MultiTenancy", @@ -99,112 +100,122 @@ $projects = ( "framework/src/Volo.Abp.Uow", "framework/src/Volo.Abp.Validation", "framework/src/Volo.Abp.VirtualFileSystem", - - # modules/users - "modules/users/src/Volo.Abp.Users.Abstractions", - "modules/users/src/Volo.Abp.Users.Domain", - "modules/users/src/Volo.Abp.Users.Domain.Shared", - "modules/users/src/Volo.Abp.Users.EntityFrameworkCore", - "modules/users/src/Volo.Abp.Users.MongoDB", - # modules/setting-management - "modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared", - "modules/setting-management/src/Volo.Abp.SettingManagement.Domain", - "modules/setting-management/src/Volo.Abp.SettingManagement.EntityFrameworkCore", - "modules/setting-management/src/Volo.Abp.SettingManagement.MongoDB", - "modules/setting-management/src/Volo.Abp.SettingManagement.Web", + # modules/account + "modules/account/src/Volo.Abp.Account.Application.Contracts", + "modules/account/src/Volo.Abp.Account.Application", + "modules/account/src/Volo.Abp.Account.HttpApi.Client", + "modules/account/src/Volo.Abp.Account.HttpApi", + "modules/account/src/Volo.Abp.Account.Web", + "modules/account/src/Volo.Abp.Account.Web.IdentityServer", + + # modules/audit-logging + "modules/audit-logging/src/Volo.Abp.AuditLogging.Domain", + "modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared", + "modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore", + "modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB", - # modules/permission-management - "modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared", - "modules/permission-management/src/Volo.Abp.PermissionManagement.Domain", - "modules/permission-management/src/Volo.Abp.PermissionManagement.Application.Contracts", - "modules/permission-management/src/Volo.Abp.PermissionManagement.Application", - "modules/permission-management/src/Volo.Abp.PermissionManagement.EntityFrameworkCore", - "modules/permission-management/src/Volo.Abp.PermissionManagement.MongoDB", - "modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi", - "modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client", - "modules/permission-management/src/Volo.Abp.PermissionManagement.Web", + # modules/background-jobs + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain", + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared", + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore", + "modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB", + + # modules/blogging + "modules/blogging/src/Volo.Blogging.Application.Contracts", + "modules/blogging/src/Volo.Blogging.Application", + "modules/blogging/src/Volo.Blogging.Domain", + "modules/blogging/src/Volo.Blogging.Domain.Shared", + "modules/blogging/src/Volo.Blogging.EntityFrameworkCore", + "modules/blogging/src/Volo.Blogging.HttpApi.Client", + "modules/blogging/src/Volo.Blogging.HttpApi", + "modules/blogging/src/Volo.Blogging.MongoDB", + "modules/blogging/src/Volo.Blogging.Web", + + # modules/client-simulation + "modules/client-simulation/src/Volo.ClientSimulation", + "modules/client-simulation/src/Volo.ClientSimulation.Web", + + # modules/docs + "modules/docs/src/Volo.Docs.Admin.Application.Contracts", + "modules/docs/src/Volo.Docs.Admin.Application", + "modules/docs/src/Volo.Docs.Admin.HttpApi.Client", + "modules/docs/src/Volo.Docs.Admin.HttpApi", + "modules/docs/src/Volo.Docs.Admin.Web", + "modules/docs/src/Volo.Docs.Application.Contracts", + "modules/docs/src/Volo.Docs.Application", + "modules/docs/src/Volo.Docs.Domain", + "modules/docs/src/Volo.Docs.Domain.Shared", + "modules/docs/src/Volo.Docs.EntityFrameworkCore", + "modules/docs/src/Volo.Docs.HttpApi.Client", + "modules/docs/src/Volo.Docs.HttpApi", + "modules/docs/src/Volo.Docs.MongoDB", + "modules/docs/src/Volo.Docs.Web", # modules/feature-management - "modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared", - "modules/feature-management/src/Volo.Abp.FeatureManagement.Domain", "modules/feature-management/src/Volo.Abp.FeatureManagement.Application.Contracts", "modules/feature-management/src/Volo.Abp.FeatureManagement.Application", + "modules/feature-management/src/Volo.Abp.FeatureManagement.Domain", + "modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared", "modules/feature-management/src/Volo.Abp.FeatureManagement.EntityFrameworkCore", - "modules/feature-management/src/Volo.Abp.FeatureManagement.MongoDB", - "modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi", "modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client", + "modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi", + "modules/feature-management/src/Volo.Abp.FeatureManagement.MongoDB", "modules/feature-management/src/Volo.Abp.FeatureManagement.Web", - - # modules/tenant-management - "modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared", - "modules/tenant-management/src/Volo.Abp.TenantManagement.Domain", - "modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts", - "modules/tenant-management/src/Volo.Abp.TenantManagement.Application", - "modules/tenant-management/src/Volo.Abp.TenantManagement.EntityFrameworkCore", - "modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB", - "modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi", - "modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client", - "modules/tenant-management/src/Volo.Abp.TenantManagement.Web", - + # modules/identity - "modules/identity/src/Volo.Abp.Identity.AspNetCore", - "modules/identity/src/Volo.Abp.Identity.Application", "modules/identity/src/Volo.Abp.Identity.Application.Contracts", + "modules/identity/src/Volo.Abp.Identity.Application", + "modules/identity/src/Volo.Abp.Identity.AspNetCore", "modules/identity/src/Volo.Abp.Identity.Domain", "modules/identity/src/Volo.Abp.Identity.Domain.Shared", "modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore", - "modules/identity/src/Volo.Abp.Identity.MongoDB", - "modules/identity/src/Volo.Abp.Identity.HttpApi", "modules/identity/src/Volo.Abp.Identity.HttpApi.Client", - "modules/identity/src/Volo.Abp.Identity.Web", + "modules/identity/src/Volo.Abp.Identity.HttpApi", + "modules/identity/src/Volo.Abp.Identity.MongoDB", + "modules/identity/src/Volo.Abp.Identity.Web", "modules/identity/src/Volo.Abp.PermissionManagement.Domain.Identity", # modules/identityserver - "modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared", "modules/identityserver/src/Volo.Abp.IdentityServer.Domain", - "modules/identityserver/src/Volo.Abp.PermissionManagement.Domain.IdentityServer", - "modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore", + "modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared", + "modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore", "modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB", + "modules/identityserver/src/Volo.Abp.PermissionManagement.Domain.IdentityServer", - # modules/account - "modules/account/src/Volo.Abp.Account.Web", - "modules/account/src/Volo.Abp.Account.Web.IdentityServer", - - # modules/docs - "modules/docs/src/Volo.Docs.Application", - "modules/docs/src/Volo.Docs.Application.Contracts", - "modules/docs/src/Volo.Docs.Domain", - "modules/docs/src/Volo.Docs.Domain.Shared", - "modules/docs/src/Volo.Docs.EntityFrameworkCore", - "modules/docs/src/Volo.Docs.HttpApi", - "modules/docs/src/Volo.Docs.HttpApi.Client", - "modules/docs/src/Volo.Docs.Web", - - # modules/blogging - "modules/blogging/src/Volo.Blogging.Application", - "modules/blogging/src/Volo.Blogging.Application.Contracts", - "modules/blogging/src/Volo.Blogging.Domain", - "modules/blogging/src/Volo.Blogging.Domain.Shared", - "modules/blogging/src/Volo.Blogging.EntityFrameworkCore", - "modules/blogging/src/Volo.Blogging.MongoDB", - "modules/blogging/src/Volo.Blogging.HttpApi", - "modules/blogging/src/Volo.Blogging.HttpApi.Client", - "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", - - # modules/client-simulation - "modules/client-simulation/src/Volo.ClientSimulation", - "modules/client-simulation/src/Volo.ClientSimulation.Web" + # modules/permission-management + "modules/permission-management/src/Volo.Abp.PermissionManagement.Application.Contracts", + "modules/permission-management/src/Volo.Abp.PermissionManagement.Application", + "modules/permission-management/src/Volo.Abp.PermissionManagement.Domain", + "modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared", + "modules/permission-management/src/Volo.Abp.PermissionManagement.EntityFrameworkCore", + "modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client", + "modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi", + "modules/permission-management/src/Volo.Abp.PermissionManagement.MongoDB", + "modules/permission-management/src/Volo.Abp.PermissionManagement.Web", + + # modules/setting-management + "modules/setting-management/src/Volo.Abp.SettingManagement.Domain", + "modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared", + "modules/setting-management/src/Volo.Abp.SettingManagement.EntityFrameworkCore", + "modules/setting-management/src/Volo.Abp.SettingManagement.MongoDB", + "modules/setting-management/src/Volo.Abp.SettingManagement.Web", + + # modules/tenant-management + "modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts", + "modules/tenant-management/src/Volo.Abp.TenantManagement.Application", + "modules/tenant-management/src/Volo.Abp.TenantManagement.Domain", + "modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared", + "modules/tenant-management/src/Volo.Abp.TenantManagement.EntityFrameworkCore", + "modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client", + "modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi", + "modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB", + "modules/tenant-management/src/Volo.Abp.TenantManagement.Web", + + # modules/users + "modules/users/src/Volo.Abp.Users.Abstractions", + "modules/users/src/Volo.Abp.Users.Domain", + "modules/users/src/Volo.Abp.Users.Domain.Shared", + "modules/users/src/Volo.Abp.Users.EntityFrameworkCore", + "modules/users/src/Volo.Abp.Users.MongoDB" ) \ No newline at end of file