Skip to content

Commit d94b534

Browse files
committed
Update module dependencies
1 parent fcf07a7 commit d94b534

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

actions_bootstrap.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
88

99
# List of PowerShell Modules required for the build
1010
$modulesToInstall = New-Object System.Collections.Generic.List[object]
11+
# https://github.com/PSAppDeployToolkit/PSAppDeployToolkit
12+
[void]$modulesToInstall.Add(([PSCustomObject]@{
13+
ModuleName = 'PSAppDeployToolkit'
14+
ModuleVersion = '3.93.0'
15+
}))
1116
# https://github.com/pester/Pester
1217
[void]$modulesToInstall.Add(([PSCustomObject]@{
1318
ModuleName = 'Pester'

src/PSAppDeployToolkit.Tools/PSAppDeployToolkit.Tools.psd1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@
4848
ProcessorArchitecture = 'None'
4949

5050
# Modules that must be imported into the global environment prior to importing this module
51-
RequiredModules = @('PSAppDeployToolkit', 'PSScriptAnalyzer') # 'PSAppDeployToolkit >= 3.93.0', 'PSScriptAnalyzer >= 1.23.0'
51+
RequiredModules = @(
52+
@{ModuleName = 'PSAppDeployToolkit'; GUID = '8c3c366b-8606-4576-9f2d-4051144f7ca2'; ModuleVersion = '3.93.0'; }
53+
@{ModuleName = 'PSScriptAnalyzer'; GUID = 'd6245802-193d-4068-a631-8863a4342a18'; ModuleVersion = '1.23.0'; }
54+
)
5255

5356
# Assemblies that must be loaded prior to importing this module
5457
# RequiredAssemblies = @()

0 commit comments

Comments
 (0)