-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWebSocket.psd1
35 lines (31 loc) · 1.17 KB
/
WebSocket.psd1
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
@{
ModuleVersion = '0.1.2'
RootModule = 'WebSocket.psm1'
Guid = '75c70c8b-e5eb-4a60-982e-a19110a1185d'
Author = 'James Brundage'
CompanyName = 'StartAutomating'
Copyright = '2024 StartAutomating'
Description = 'Work with WebSockets in PowerShell'
FunctionsToExport = @('Get-WebSocket')
AliasesToExport = @('WebSocket')
PrivateData = @{
PSData = @{
Tags = @('WebSocket', 'WebSockets', 'Networking', 'Web')
ProjectURI = 'https://github.com/PowerShellWeb/WebSocket'
LicenseURI = 'https://github.com/PowerShellWeb/WebSocket/blob/main/LICENSE'
ReleaseNotes = @'
> Like It? [Star It](https://github.com/PowerShellWeb/WebSocket)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
## WebSocket 0.1.2
* WebSocket now decorates (#34)
* Added a -PSTypeName(s) parameter to Get-WebSocket, so we can extend the output.
* Reusing WebSockets (#35)
* If a WebSocketUri is already open, we will reuse it.
* Explicitly exporting commands (#38)
* This should enable automatic import and enable Find-Command
---
Additional details available in the [CHANGELOG](CHANGELOG.md)
'@
}
}
}