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
Loads build.psd1 and the module manifest and combines them with the parameter values of the calling function. Pushes location to the module source location.
5
+
.DESCRIPTION
6
+
This function is for internal use from Build-Module only
7
+
It does two things that make it really only work properly there:
8
+
9
+
1. It calls Push-Location without Pop-Location to push the SourcePath into the "Build-Module" stack
10
+
2. It reads the ParameterValues from the PARENT MyInvocation
11
+
.NOTES
12
+
Depends on the internal ResolveModuleSource and ResolveModuleManifest
13
+
Depends on the Configuration module Update-Object and (the built in Import-LocalizedData and Get-Module)
14
+
#>
15
+
[CmdletBinding()]
16
+
param(
17
+
# The root folder where the module source is (including the Build.psd1 and the module Manifest.psd1)
0 commit comments