-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.requirements.psd1
More file actions
33 lines (32 loc) · 864 Bytes
/
build.requirements.psd1
File metadata and controls
33 lines (32 loc) · 864 Bytes
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
@{
# Some defaults for all dependencies
PSDependOptions = @{
Target = '$ENV:USERPROFILE\Documents\WindowsPowerShell\Modules'
AddToPath = $True
}
# Grab some modules without depending on PowerShellGet
'psake' = @{
DependencyType = 'PSGalleryNuget'
Version = 'Latest'
}
'PSDeploy' = @{
DependencyType = 'PSGalleryNuget'
Version = 'Latest'
}
'BuildHelpers' = @{
DependencyType = 'PSGalleryNuget'
Version = 'Latest'
}
'Pester' = @{
DependencyType = 'PSGalleryNuget'
Version = 'Latest'
}
'PSScriptAnalyzer' = @{
DependencyType = 'PSGalleryNuget'
Version = 'Latest'
}
'Assert' = @{
DependencyType = 'PSGalleryNuget'
Version = 'Latest'
}
}