Skip to content

Commit 0a6b3e3

Browse files
Add Word Module to PsToolBox
2 parents 1d27794 + 31148e3 commit 0a6b3e3

File tree

1 file changed

+84
-82
lines changed

1 file changed

+84
-82
lines changed

Modules/IntelliTect.PSToolbox/IntelliTect.PSToolbox.psd1

+84-82
Original file line numberDiff line numberDiff line change
@@ -8,128 +8,130 @@
88

99
@{
1010

11-
# Script module or binary module file associated with this manifest.
12-
# RootModule = ''
11+
# Script module or binary module file associated with this manifest.
12+
# RootModule = ''
1313

14-
# Version number of this module.
15-
ModuleVersion = '1.4.2.5'
14+
# Version number of this module.
15+
ModuleVersion = '1.4.2.4'
1616

17-
# Supported PSEditions
18-
# CompatiblePSEditions = @()
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
1919

20-
# ID used to uniquely identify this module
21-
GUID = '91500afc-48ad-41a6-9cdc-091bc89611ed'
20+
# ID used to uniquely identify this module
21+
GUID = '91500afc-48ad-41a6-9cdc-091bc89611ed'
2222

23-
# Author of this module
24-
Author = 'IntelliTect'
23+
# Author of this module
24+
Author = 'IntelliTect'
2525

26-
# Company or vendor of this module
27-
CompanyName = 'IntelliTect'
26+
# Company or vendor of this module
27+
CompanyName = 'IntelliTect'
2828

29-
# Copyright statement for this module
30-
Copyright = '(c) 2016 IntelliTect. All rights reserved.'
29+
# Copyright statement for this module
30+
Copyright = '(c) 2016 IntelliTect. All rights reserved.'
3131

32-
# Description of the functionality provided by this module
33-
Description = 'Shortcut module to install all of IntelliTect''s PowerShell modules'
32+
# Description of the functionality provided by this module
33+
Description = 'Shortcut module to install all of IntelliTect''s PowerShell modules'
3434

35-
# Minimum version of the Windows PowerShell engine required by this module
36-
# PowerShellVersion = ''
35+
# Minimum version of the Windows PowerShell engine required by this module
36+
# PowerShellVersion = ''
3737

38-
# Name of the Windows PowerShell host required by this module
39-
# PowerShellHostName = ''
38+
# Name of the Windows PowerShell host required by this module
39+
# PowerShellHostName = ''
4040

41-
# Minimum version of the Windows PowerShell host required by this module
42-
# PowerShellHostVersion = ''
41+
# Minimum version of the Windows PowerShell host required by this module
42+
# PowerShellHostVersion = ''
4343

44-
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45-
# DotNetFrameworkVersion = ''
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45+
# DotNetFrameworkVersion = ''
4646

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 = ''
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 = ''
4949

50-
# Processor architecture (None, X86, Amd64) required by this module
51-
# ProcessorArchitecture = ''
50+
# Processor architecture (None, X86, Amd64) required by this module
51+
# ProcessorArchitecture = ''
5252

53-
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @('IntelliTect.Common',
55-
'IntelliTect.Google',
56-
'IntelliTect.CredentialManager',
57-
'IntelliTect.ResharperNugetSearch')
53+
# Modules that must be imported into the global environment prior to importing this module
54+
RequiredModules = @(
55+
'IntelliTect.Common',
56+
'IntelliTect.Google',
57+
'IntelliTect.CredentialManager',
58+
'IntelliTect.ResharperNugetSearch',
59+
'IntelliTect.MicrosoftWord')
5860

59-
# Assemblies that must be loaded prior to importing this module
60-
# RequiredAssemblies = @()
61+
# Assemblies that must be loaded prior to importing this module
62+
# RequiredAssemblies = @()
6163

62-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
63-
# ScriptsToProcess = @()
64+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
65+
# ScriptsToProcess = @()
6466

65-
# Type files (.ps1xml) to be loaded when importing this module
66-
# TypesToProcess = @()
67+
# Type files (.ps1xml) to be loaded when importing this module
68+
# TypesToProcess = @()
6769

68-
# Format files (.ps1xml) to be loaded when importing this module
69-
# FormatsToProcess = @()
70+
# Format files (.ps1xml) to be loaded when importing this module
71+
# FormatsToProcess = @()
7072

71-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
72-
# NestedModules = @()
73+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
74+
# NestedModules = @()
7375

74-
# 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.
75-
FunctionsToExport = '*'
76+
# 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.
77+
FunctionsToExport = '*'
7678

77-
# 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.
78-
CmdletsToExport = '*'
79+
# 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.
80+
CmdletsToExport = '*'
7981

80-
# Variables to export from this module
81-
VariablesToExport = '*'
82+
# Variables to export from this module
83+
VariablesToExport = '*'
8284

83-
# 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.
84-
AliasesToExport = '*'
85+
# 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.
86+
AliasesToExport = '*'
8587

86-
# DSC resources to export from this module
87-
# DscResourcesToExport = @()
88+
# DSC resources to export from this module
89+
# DscResourcesToExport = @()
8890

89-
# List of all modules packaged with this module
90-
# ModuleList = @()
91+
# List of all modules packaged with this module
92+
# ModuleList = @()
9193

92-
# List of all files packaged with this module
93-
# FileList = @()
94+
# List of all files packaged with this module
95+
# FileList = @()
9496

95-
# 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.
96-
PrivateData = @{
97+
# 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.
98+
PrivateData = @{
9799

98-
PSData = @{
100+
PSData = @{
99101

100-
# Tags applied to this module. These help with module discovery in online galleries.
101-
# Tags = @()
102+
# Tags applied to this module. These help with module discovery in online galleries.
103+
# Tags = @()
102104

103-
# A URL to the license for this module.
104-
# LicenseUri = ''
105+
# A URL to the license for this module.
106+
# LicenseUri = ''
105107

106-
# A URL to the main website for this project.
107-
# ProjectUri = ''
108+
# A URL to the main website for this project.
109+
# ProjectUri = ''
108110

109-
# A URL to an icon representing this module.
110-
# IconUri = ''
111+
# A URL to an icon representing this module.
112+
# IconUri = ''
111113

112-
# ReleaseNotes of this module
113-
# ReleaseNotes = ''
114+
# ReleaseNotes of this module
115+
# ReleaseNotes = ''
114116

115-
# Prerelease string of this module
116-
# Prerelease = ''
117+
# Prerelease string of this module
118+
# Prerelease = ''
117119

118-
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
119-
# RequireLicenseAcceptance = $false
120+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
121+
# RequireLicenseAcceptance = $false
120122

121-
# External dependent modules of this module
122-
# ExternalModuleDependencies = @()
123+
# External dependent modules of this module
124+
# ExternalModuleDependencies = @()
123125

124-
} # End of PSData hashtable
126+
} # End of PSData hashtable
125127

126-
} # End of PrivateData hashtable
128+
} # End of PrivateData hashtable
127129

128-
# HelpInfo URI of this module
129-
# HelpInfoURI = ''
130+
# HelpInfo URI of this module
131+
# HelpInfoURI = ''
130132

131-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
132-
# DefaultCommandPrefix = ''
133+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
134+
# DefaultCommandPrefix = ''
133135

134136
}
135137

0 commit comments

Comments
 (0)