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
Copy file name to clipboardExpand all lines: build.ps1
+21-17Lines changed: 21 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
The default value is '' (empty string).
11
11
12
12
.PARAMETERBuildConfig
13
-
Not yet written.
13
+
Path to a file with configuration. Supported extensions : psd1, yaml, yml, json, jsonc.
14
14
15
15
.PARAMETEROutputDirectory
16
16
Specifies the folder to build the artefact into. The default value is 'output'.
@@ -22,7 +22,7 @@
22
22
.PARAMETERRequiredModulesDirectory
23
23
Can be a path (relative to $PSScriptRoot or absolute) to tell Resolve-Dependency
24
24
and PSDepend where to save the required modules. It is also possible to use
25
-
'CurrentUser' och 'AllUsers' to install missing dependencies. You can override
25
+
'CurrentUser' or 'AllUsers' to install missing dependencies. You can override
26
26
the value for PSDepend in the Build.psd1 build manifest. The default value is
27
27
'output/RequiredModules'.
28
28
@@ -49,13 +49,13 @@
49
49
used in the DscResource.Test.build.ps1 tasks.
50
50
51
51
.PARAMETERResolveDependency
52
-
Not yet written.
52
+
Resolve missing dependencies.
53
53
54
54
.PARAMETERBuildInfo
55
55
The build info object from ModuleBuilder. Defaults to an empty hashtable.
56
56
57
57
.PARAMETERAutoRestore
58
-
Not yet written.
58
+
Specifies to restore the required modules by running build.ps1 with ResolveDependency switch and empty task `noop`.
59
59
60
60
.PARAMETERUseModuleFast
61
61
Specifies to use ModuleFast instead of PowerShellGet to resolve dependencies
@@ -70,6 +70,7 @@
70
70
only works then the method of downloading dependencies is PSResourceGet.
71
71
This can also be configured in Resolve-Dependency.psd1.
72
72
#>
73
+
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments','', Justification ='Suppressing this rule because how $PSDependTarget is assigned to splatting variable $resolveDependencyParams.')]
Copy file name to clipboardExpand all lines: source/SChannelDsc.psd1
+8-20Lines changed: 8 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,6 @@
1
-
#
2
-
# Module manifest for module 'SChannelDsc'
3
-
#
4
-
# Generated by: DSC Community
5
-
#
6
-
# Generated on: 10/02/2022
7
-
#
8
-
9
1
@{
10
-
11
2
# Script module or binary module file associated with this manifest.
12
-
RootModule='SchannelDsc.psm1'
3
+
RootModule='SChannelDsc.psm1'
13
4
14
5
# Version number of this module.
15
6
ModuleVersion='0.0.1'
@@ -27,7 +18,7 @@
27
18
CompanyName='DSC Community'
28
19
29
20
# Copyright statement for this module
30
-
Copyright='(c) DSC Community. All rights reserved.'
21
+
Copyright='Copyright the DSC Community contributors. All rights reserved.'
31
22
32
23
# Description of the functionality provided by this module
33
24
Description='This DSC module is used to manage Secure Channel (SChannel) configurations.'
@@ -51,22 +42,19 @@
51
42
# ProcessorArchitecture = ''
52
43
53
44
# Modules that must be imported into the global environment prior to importing this module
54
-
RequiredModules=@()
45
+
RequiredModules=@()
55
46
56
47
# Assemblies that must be loaded prior to importing this module
57
-
#RequiredAssemblies = @()
48
+
RequiredAssemblies=@()
58
49
59
50
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60
-
#ScriptsToProcess = @()
51
+
ScriptsToProcess=@()
61
52
62
53
# Type files (.ps1xml) to be loaded when importing this module
63
-
#TypesToProcess = @()
54
+
TypesToProcess=@()
64
55
65
56
# Format files (.ps1xml) to be loaded when importing this module
66
-
# FormatsToProcess = @()
67
-
68
-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69
-
NestedModules=@()
57
+
FormatsToProcess=@()
70
58
71
59
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
72
60
FunctionsToExport=@()
@@ -87,7 +75,7 @@
87
75
# ModuleList = @()
88
76
89
77
# List of all files packaged with this module
90
-
#FileList = @()
78
+
FileList=@()
91
79
92
80
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
0 commit comments