-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenGraph.psd1
More file actions
33 lines (28 loc) · 1.07 KB
/
OpenGraph.psd1
File metadata and controls
33 lines (28 loc) · 1.07 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
@{
RootModule = 'OpenGraph.psm1'
ModuleVersion = '0.0.1'
GUID = 'be4e4070-1ea6-4a2e-8b6a-c6b7755e5ace'
Author = 'JamesBrundage'
CompanyName = 'Start-Automating'
Copyright = '(c) 2025 Start-Automating'
Description = 'Get OpenGraph with PowerShell'
FunctionsToExport = 'Get-OpenGraph'
AliasesToExport = 'OpenGraph', 'ogp'
TypesToProcess = 'OpenGraph.types.ps1xml'
PrivateData = @{
PSData = @{
Tags = @('OpenGraph','SEO','Web','PowerShellWeb' )
ProjectURI = 'https://github.com/PowerShellWeb/OpenGraph'
LicenseURI = 'https://github.com/PowerShellWeb/OpenGraph/blob/main/LICENSE'
ReleaseNotes = @'
> Like It? [Star It](https://github.com/PowerShellWeb/OpenGraph)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
## OpenGraph 0.1
* `OpenGraph.ToString()` now returns HTML (#10)
* `Get-OpenGraph` now caches results (#11)
---
Additional release notes can be found at [CHANGELOG.md](https://github.com/PowerShellWeb/OpenGraph/blob/main/CHANGELOG.md)
'@
}
}
}