-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSmartConsole.psm1
More file actions
53 lines (51 loc) · 1.68 KB
/
SmartConsole.psm1
File metadata and controls
53 lines (51 loc) · 1.68 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
#Requires -Version 2.0
# Public functions
@( Get-ChildItem -Path "$PSScriptRoot\Public\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Basics\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Categories-Keywords\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Content-Classes\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Content-Pages-Elements\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Publication\*.ps1" -Recurse ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Projects\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Search\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Server-Manager\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Public\Users\*.ps1" ) | ForEach-Object {
. $_.FullName
}
# Private functions
@( Get-ChildItem -Path "$PSScriptRoot\Private\Config\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Private\Core\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Private\Debug\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Private\Session\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Private\Store\*.ps1" ) | ForEach-Object {
. $_.FullName
}
@( Get-ChildItem -Path "$PSScriptRoot\Private\Tools\*.ps1" ) | ForEach-Object {
. $_.FullName
}