-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenXML.psd1
More file actions
123 lines (94 loc) · 4.03 KB
/
OpenXML.psd1
File metadata and controls
123 lines (94 loc) · 4.03 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@{
# Script module or binary module file associated with this manifest.
RootModule = 'OpenXML.psm1'
# Version number of this module.
ModuleVersion = '0.1'
# Supported PSEditions
# CompatiblePSEditions = @()
Description = 'Automate OpenXML. Excel, Word, and PowerPoint automation in PowerShell.'
# ID used to uniquely identify this module
GUID = 'ce1bf009-73ae-4293-b57f-a19aaaa793b7'
# Author of this module
Author = 'James Brundage'
# Company or vendor of this module
CompanyName = 'Start-Automating'
# Copyright statement for this module
Copyright = '2025 Start-Automating'
TypesToProcess = @('OpenXML.types.ps1xml')
# 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.
FunctionsToExport = 'Get-OpenXML', 'Set-OpenXML', 'Import-OpenXML', 'Export-OpenXML'
# 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.
CmdletsToExport = '*'
# Variables to export from this module
VariablesToExport = '*'
# 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.
AliasesToExport = 'OpenXML', 'Close-OpenXML', 'Open-OpenXML', 'Restore-OpenXML', 'Save-OpenXML'
# 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.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('Word','Excel','PowerPoint','OpenXML','OfficeOpenXML','OOXML')
# A URL to the license for this module.
LicenseUri = 'https://github.com/PowerShellWeb/OpenXML/blob/main/LICENSE'
# A URL to the main website for this project.
ProjectUri = 'https://github.com/PowerShellWeb/OpenXML'
# A URL to an icon representing this module.
# IconUri = ''
# ReleaseNotes of this module
ReleaseNotes = @'
## OpenXML 0.1
* Initial Build of OpenXML Module (#1)
* Commands:
* `Get-OpenXML` (#2)
* `Import-OpenXML` (#14)
* `Export-OpenXML` (#15)
* `Close-OpenXML` (#16)
* `Copy-OpenXML` (#18)
* `Set-OpenXML` (#19)
* `Start-OpenXML` (#28)
* `Stop-OpenXML` (#29)
* Initial Extended Types
* `OpenXML`
* `OpenXML.get_Parts` (#17)
* `OpenXML.get_Created` (#23)
* `OpenXML.get_Modified` (#24)
* `OpenXML.File`
* `OpenXML.File.get_DocumentProperty` (#13)
* `OpenXML.File` default display (#7)
* `OpenXML.Excel.File`
* `OpenXML.Excel.File.get_Worksheets` (#5)
* `OpenXML.Excel.File.get_SharedString` (#25)
* `OpenXML.Excel.Worksheet`
* `OpenXML.Excel.Worksheet.get_Cell` (#6)
* `OpenXML.Excel.Worksheet.get_Formula` (#26)
* `OpenXML.PowerPoint.File`
* `OpenXML.PowerPoint.File.get_Slides` (#8)
* `OpenXML.PowerPoint.File.get_Text` (#9)
* `OpenXML.PowerPoint.Slide`
* `OpenXML.PowerPoint.get_Text` (#10)
* `OpenXML.Word.File`
* `OpenXML.Word.File.get_Text` (#11)
* Sample Documents (#3)
* Initial Tests (#27)
* Build workflow
* Building types with [EZOut](https://github.com/StartAutomating/EZOut) (#4)
* Building GitHub Workflow with [PSDevOps](https://github.com/StartAutomating/PSDevOps) (#12)
* Core Documentation
* README (#1)
* CODE_OF_CONDUCT (#20)
* CONTRIBUTING (#21)
* SECURITY (#22)
'@
# Prerelease string of this module
# Prerelease = ''
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
# External dependent modules of this module
# ExternalModuleDependencies = @()
} # End of PSData hashtable
} # End of PrivateData hashtable
# HelpInfo URI of this module
# HelpInfoURI = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
}