forked from PowerShell/ThreadJob
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadJob.psd1
More file actions
41 lines (30 loc) · 1.25 KB
/
Copy pathThreadJob.psd1
File metadata and controls
41 lines (30 loc) · 1.25 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
#
# Module manifest for module 'ThreadJob'
#
@{
# Script module or binary module file associated with this manifest.
RootModule = 'ThreadJob.psm1'
# Version number of this module.
ModuleVersion = '2.1.0'
# ID used to uniquely identify this module
GUID = '0e7b895d-2fec-43f7-8cae-11e8d16f6e40'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
# Description of the functionality provided by this module
Description = "The ThreadJob module is now deprecated. Please use the 'Microsoft.PowerShell.ThreadJob' module instead."
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
RequiredModules = @('Microsoft.PowerShell.ThreadJob')
FunctionsToExport = @()
# Cmdlets to export from this module
CmdletsToExport = @()
AliasesToExport = @('Start-ThreadJob')
# 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 = @{
LicenseUri = 'https://github.com/PowerShell/ThreadJob/blob/master/LICENSE'
ProjectUri = 'https://github.com/PowerShell/ThreadJob'
}
} # End of PrivateData hashtable
}