-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirements.psd1
More file actions
34 lines (34 loc) · 1.05 KB
/
requirements.psd1
File metadata and controls
34 lines (34 loc) · 1.05 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
@{
# NOTE:
# PSDependOptions with Target = 'CurrentUser' installs all declared module
# dependencies into the current user's scope rather than system-wide.
# This can impact multi-user development or shared build environments,
# where each user/agent will get their own copy of the dependencies.
PSDependOptions = @{
Target = 'CurrentUser'
}
'InvokeBuild' = @{
'Version' = 'latest'
'Repository' = 'PSGallery'
}
'ModuleBuilder' = @{
'Version' = 'latest'
'Repository' = 'PSGallery'
}
'Pester' = @{
'Version' = 'latest'
'Repository' = 'PSGallery'
}
'PSScriptAnalyzer' = @{
'Version' = 'latest'
'Repository' = 'PSGallery'
}
'InjectionHunter' = @{
'Version' = 'latest'
'Repository' = 'PSGallery'
}
'Microsoft.PowerShell.PlatyPS' = @{
'Version' = 'latest'
'Repository' = 'PSGallery'
}
}