mirror of https://github.com/abpframework/abp.git
2 changed files with 50 additions and 26 deletions
@ -1,27 +1,49 @@ |
|||
# COMMON PATHS |
|||
$dev = $args[0] |
|||
|
|||
$rootFolder = (Get-Item -Path "./" -Verbose).FullName |
|||
# COMMON PATHS |
|||
|
|||
# List of solutions |
|||
$rootFolder = (Get-Item -Path "./" -Verbose).FullName |
|||
|
|||
$solutionPaths = ( |
|||
"../framework", |
|||
"../modules/users", |
|||
"../modules/permission-management", |
|||
"../modules/setting-management", |
|||
"../modules/feature-management", |
|||
"../modules/identity", |
|||
"../modules/identityserver", |
|||
"../modules/tenant-management", |
|||
"../modules/audit-logging", |
|||
"../modules/background-jobs", |
|||
"../modules/account", |
|||
|
|||
"../modules/client-simulation", |
|||
"../modules/virtual-file-explorer", |
|||
"../modules/docs", |
|||
"../modules/blogging", |
|||
"../templates/module/aspnet-core", |
|||
"../templates/app/aspnet-core", |
|||
"../abp_io/AbpIoLocalization" |
|||
) |
|||
if ($dev -eq "-d") |
|||
{ |
|||
# List of solutions used only in development mode |
|||
Write-host "" |
|||
Write-host ":::::::::::::: !!! You are in development mode !!! ::::::::::::::" -ForegroundColor red -BackgroundColor yellow |
|||
Write-host "" |
|||
$solutionPaths = ( |
|||
"../framework", |
|||
"../modules/users", |
|||
"../modules/permission-management", |
|||
"../modules/setting-management", |
|||
"../modules/feature-management", |
|||
"../modules/identity", |
|||
"../modules/identityserver", |
|||
"../modules/tenant-management", |
|||
"../modules/audit-logging", |
|||
"../modules/background-jobs", |
|||
"../modules/account" |
|||
) |
|||
}else{ |
|||
# List of all solutions |
|||
$solutionPaths = ( |
|||
"../framework", |
|||
"../modules/users", |
|||
"../modules/permission-management", |
|||
"../modules/setting-management", |
|||
"../modules/feature-management", |
|||
"../modules/identity", |
|||
"../modules/identityserver", |
|||
"../modules/tenant-management", |
|||
"../modules/audit-logging", |
|||
"../modules/background-jobs", |
|||
"../modules/account", |
|||
|
|||
"../modules/client-simulation", |
|||
"../modules/virtual-file-explorer", |
|||
"../modules/docs", |
|||
"../modules/blogging", |
|||
"../templates/module/aspnet-core", |
|||
"../templates/app/aspnet-core", |
|||
"../abp_io/AbpIoLocalization" |
|||
) |
|||
} |
|||
|
|||
Loading…
Reference in new issue