Skip to content

Commit a01299e

Browse files
committed
Fix module manifest
1 parent 6f67f11 commit a01299e

File tree

1 file changed

+45
-110
lines changed

1 file changed

+45
-110
lines changed

source/PSXml.psd1

Lines changed: 45 additions & 110 deletions
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,68 @@
1-
#
2-
# Module manifest for module 'PSXml'
3-
#
4-
# Generated by: Johan Ljunggren
5-
#
6-
# Generated on: 5/2/2021
7-
#
8-
91
@{
2+
# Script module or binary module file associated with this manifest.
3+
RootModule = 'PSXml.psm1'
104

11-
# Script module or binary module file associated with this manifest.
12-
RootModule = 'PSXml.psm1'
13-
14-
# Version number of this module.
15-
ModuleVersion = '0.0.1'
16-
17-
# Supported PSEditions
18-
# CompatiblePSEditions = @()
19-
20-
# ID used to uniquely identify this module
21-
GUID = '54a6c1e3-b6e1-4a55-a574-9b802dbcb29d'
22-
23-
# Author of this module
24-
Author = 'Johan Ljunggren'
25-
26-
# Company or vendor of this module
27-
CompanyName = 'Unknown'
28-
29-
# Copyright statement for this module
30-
Copyright = '(c) Johan Ljunggren. All rights reserved.'
31-
32-
# Description of the functionality provided by this module
33-
Description = 'Commands to help use XML in PowerShell'
34-
35-
# Minimum version of the PowerShell engine required by this module
36-
# PowerShellVersion = ''
37-
38-
# Name of the PowerShell host required by this module
39-
# PowerShellHostName = ''
40-
41-
# Minimum version of the PowerShell host required by this module
42-
# PowerShellHostVersion = ''
43-
44-
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45-
# DotNetFrameworkVersion = ''
46-
47-
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48-
# ClrVersion = ''
49-
50-
# Processor architecture (None, X86, Amd64) required by this module
51-
# ProcessorArchitecture = ''
52-
53-
# Modules that must be imported into the global environment prior to importing this module
54-
# RequiredModules = @()
55-
56-
# Assemblies that must be loaded prior to importing this module
57-
# RequiredAssemblies = @()
58-
59-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60-
# ScriptsToProcess = @()
61-
62-
# Type files (.ps1xml) to be loaded when importing this module
63-
# TypesToProcess = @()
64-
65-
# 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 = @()
70-
71-
# 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-
FunctionsToExport = ''
73-
74-
# 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.
75-
CmdletsToExport = '*'
76-
77-
# Variables to export from this module
78-
VariablesToExport = '*'
79-
80-
# 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.
81-
AliasesToExport = '*'
5+
# Version number of this module.
6+
ModuleVersion = '0.0.1'
827

83-
# DSC resources to export from this module
84-
# DscResourcesToExport = @()
8+
# ID used to uniquely identify this module
9+
GUID = '54a6c1e3-b6e1-4a55-a574-9b802dbcb29d'
8510

86-
# List of all modules packaged with this module
87-
# ModuleList = @()
11+
# Author of this module
12+
Author = 'Viscalyx'
8813

89-
# List of all files packaged with this module
90-
# FileList = @()
14+
# Company or vendor of this module
15+
CompanyName = 'Viscalyx'
9116

92-
# 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.
93-
PrivateData = @{
17+
# Copyright statement for this module
18+
Copyright = '(c) Viscalyx. All rights reserved.'
9419

95-
PSData = @{
20+
# Description of the functionality provided by this module
21+
Description = 'Commands to help use XML in PowerShell'
9622

97-
# Tags applied to this module. These help with module discovery in online galleries.
98-
# Tags = @()
23+
# Minimum version of the PowerShell engine required by this module
24+
PowerShellVersion = '5.0'
9925

100-
# A URL to the license for this module.
101-
# LicenseUri = ''
26+
# Modules that must be imported into the global environment prior to importing this module
27+
RequiredModules = @()
10228

103-
# A URL to the main website for this project.
104-
# ProjectUri = ''
29+
# 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.
30+
FunctionsToExport = @()
10531

106-
# A URL to an icon representing this module.
107-
# IconUri = ''
32+
# 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.
33+
CmdletsToExport = @()
10834

109-
# ReleaseNotes of this module
110-
# ReleaseNotes = ''
35+
# Variables to export from this module
36+
VariablesToExport = @()
11137

112-
# Prerelease string of this module
113-
# Prerelease = ''
38+
# 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.
39+
AliasesToExport = @()
11440

115-
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
116-
# RequireLicenseAcceptance = $false
41+
# DSC resources to export from this module
42+
DscResourcesToExport = @()
11743

118-
# External dependent modules of this module
119-
# ExternalModuleDependencies = @()
44+
# 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.
45+
PrivateData = @{
46+
PSData = @{
47+
# Tags applied to this module. These help with module discovery in online galleries.
48+
Tags = @('XML')
12049

121-
} # End of PSData hashtable
50+
# A URL to the license for this module.
51+
LicenseUri = 'https://github.com/viscalyx/PSXml/blob/main/LICENSE'
12252

123-
} # End of PrivateData hashtable
53+
# A URL to the main website for this project.
54+
ProjectUri = 'https://github.com/viscalyx/PSXml'
12455

125-
# HelpInfo URI of this module
126-
# HelpInfoURI = ''
56+
# A URL to an icon representing this module.
57+
# IconUri = ''
12758

128-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
129-
# DefaultCommandPrefix = ''
59+
# ReleaseNotes of this module
60+
ReleaseNotes = ''
13061

62+
# Prerelease string of this module
63+
Prerelease = ''
64+
} # End of PSData hashtable
65+
} # End of PrivateData hashtable
13166
}
13267

13368

0 commit comments

Comments
 (0)