You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Assemblies that must be loaded prior to importing this module
71
+
# RequiredAssemblies = @()
72
+
73
+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
74
+
# ScriptsToProcess = @()
75
+
76
+
# Type files (.ps1xml) to be loaded when importing this module
77
+
# TypesToProcess = @()
78
+
79
+
# Format files (.ps1xml) to be loaded when importing this module
80
+
# FormatsToProcess = @()
81
+
82
+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
83
+
# NestedModules = @()
84
+
85
+
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
86
+
FunctionsToExport=@()
87
+
88
+
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
89
+
CmdletsToExport=@()
90
+
91
+
# Variables to export from this module
92
+
# VariablesToExport = @()
93
+
94
+
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
95
+
AliasesToExport=@()
96
+
97
+
# DSC resources to export from this module
98
+
# DscResourcesToExport = @()
99
+
100
+
# List of all modules packaged with this module
101
+
# ModuleList = @()
102
+
103
+
# List of all files packaged with this module
104
+
# FileList = @()
105
+
106
+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
107
+
PrivateData=@{
108
+
109
+
PSData=@{
110
+
111
+
# Tags applied to this module. These help with module discovery in online galleries.
Write-Host-ForegroundColor Cyan "To run this module in an isolated PowerShell session, run the 'run-module.ps1' script or provide the '-Run' parameter to this script."
55
+
}
56
+
return
57
+
}
58
+
59
+
$binFolder=Join-Path$PSScriptRoot'bin'
60
+
$objFolder=Join-Path$PSScriptRoot'obj'
61
+
62
+
if(-not$Debugger) {
63
+
Write-Host-ForegroundColor Green 'Cleaning build folders...'
0 commit comments