forked from abpframework/abp-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.ps1
40 lines (37 loc) · 1.13 KB
/
common.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# COMMON PATHS
$rootFolder = (Get-Item -Path "./" -Verbose).FullName
# List of solutions
$solutionPaths = (
"../AcmeBookStoreAngularMaterial/aspnet-core",
"../Authentication-Customization",
"../BasicAspNetCoreApplication",
"../BookStore-Angular-MongoDb/aspnet-core",
"../BookStore-Blazor-EfCore",
"../BookStore-Modular/modules/book-management",
"../BookStore-Modular/application",
"../BookStore-Mvc-EfCore",
"../ClientSimulationDemo",
"../DashboardDemo",
# "../DevExpress-Blazor",
# "../DevExtreme-Angular/aspnet-core",
# "../DevExtreme-Mvc",
"../DocumentationSamples/CustomApplicationModules",
"../DocumentationSamples/ExtendLocalizationResource",
"../EfCoreMigrationDemo",
"../EventOrganizer",
"../GrpcDemo",
"../KafkaEventBus",
#"../MicroserviceDemo",
"../OrganizationUnitSample",
"../PasswordlessAuthentication",
"../PostgeSqlDemo",
"../RabbitMqEventBus",
"../RebusEventBus",
"../SignalRDemo",
"../SignalRTieredDemo",
"../StoredProcedureDemo",
"../TextTemplateDemo",
"../AbpLdapSample",
"../ExcelIO",
"../EmailSendDemo"
)