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
# Script module or binary module file associated with this manifest.
4
+
RootModule=if ($PSEdition-eq'Core')
5
+
{
6
+
'Core/JsonModule.Cmdlets.dll'
7
+
}
8
+
else
9
+
{
10
+
'Framework/JsonModule.Cmdlets.dll'
11
+
}
12
+
13
+
# Version number of this module.
14
+
ModuleVersion='0.0.1'
15
+
16
+
# Supported PSEditions
17
+
CompatiblePSEditions=@('Core','Desktop')
18
+
19
+
# ID used to uniquely identify this module
20
+
GUID='228638a3-fe17-46ec-a093-edfc555a75f1'
21
+
22
+
# Author of this module
23
+
Author='Me'
24
+
25
+
# Company or vendor of this module
26
+
CompanyName='Unknown'
27
+
28
+
# Copyright statement for this module
29
+
Copyright='(c) Me. All rights reserved.'
30
+
31
+
# Description of the functionality provided by this module
32
+
# Description = ''
33
+
34
+
# Minimum version of the PowerShell engine required by this module
35
+
PowerShellVersion='5.1'
36
+
37
+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
38
+
DotNetFrameworkVersion='4.6.1'
39
+
40
+
# 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.
41
+
FunctionsToExport=@()
42
+
43
+
# Cmdlets 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 cmdlets to export.
44
+
CmdletsToExport='Out-Json'
45
+
46
+
# Variables to export from this module
47
+
VariablesToExport=@()
48
+
49
+
# Aliases 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 aliases to export.
50
+
AliasesToExport=@()
51
+
52
+
# 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