-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathRequiredModules.psd1
More file actions
26 lines (25 loc) · 841 Bytes
/
RequiredModules.psd1
File metadata and controls
26 lines (25 loc) · 841 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
@{
<#
This is only required if you need to use the method PowerShellGet & PSDepend
It is not required for PSResourceGet or ModuleFast (and will be ignored).
See Resolve-Dependency.psd1 on how to enable methods.
#>
PSDependOptions = @{
AddToPath = $true
Target = 'output/RequiredModules' # Match the PSDependTarget
Parameters = @{
Repository = 'PSGallery'
}
}
InvokeBuild = 'latest'
PSScriptAnalyzer = 'latest'
Pester = 'latest'
ModuleBuilder = 'latest'
ChangelogManagement = 'latest'
Sampler = 'latest'
PlatyPS = 'latest'
EntraAuth = 'latest'
'EntraAuth.Graph' = 'latest'
PSFramework = 'latest'
MSGraphPermissions = 'latest'
}