You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: module/PowerShellEditorServices/PowerShellEditorServices.psd1
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -19,25 +19,27 @@ RootModule = if ($PSEdition -eq 'Core')
19
19
}
20
20
21
21
# Version number of this module.
22
-
ModuleVersion='2.0.0'
22
+
ModuleVersion='2.1.0'
23
23
24
24
# ID used to uniquely identify this module
25
25
GUID='9ca15887-53a2-479a-9cda-48d26bcb6c47'
26
26
27
27
# Author of this module
28
-
Author='Microsoft'
28
+
Author='Microsoft Corporation'
29
29
30
30
# Company or vendor of this module
31
-
CompanyName='Microsoft'
31
+
CompanyName='Microsoft Corporation'
32
32
33
33
# Copyright statement for this module
34
-
Copyright='(c) 2017 Microsoft. All rights reserved.'
34
+
Copyright='(c) Microsoft Corporation'
35
35
36
36
# Description of the functionality provided by this module
37
37
# Description = ''
38
38
39
39
# Minimum version of the Windows PowerShell engine required by this module
40
-
# PowerShellVersion = ''
40
+
# NOTE: The syntax used above in the manifest means this manifest cannot be read in PS 4 or below.
41
+
# Instead this is just an informative field.
42
+
PowerShellVersion='5.1'
41
43
42
44
# Name of the Windows PowerShell host required by this module
43
45
# PowerShellHostName = ''
@@ -46,7 +48,8 @@ Copyright = '(c) 2017 Microsoft. All rights reserved.'
46
48
# PowerShellHostVersion = ''
47
49
48
50
# Minimum version of Microsoft .NET Framework required by this module
49
-
# DotNetFrameworkVersion = ''
51
+
# NOTE: We check this later, so that the error message is communicated properly to the user
52
+
# DotNetFrameworkVersion = '4.6.1'
50
53
51
54
# Minimum version of the common language runtime (CLR) required by this module
52
55
# CLRVersion = ''
@@ -93,6 +96,8 @@ AliasesToExport = @()
93
96
# List of all files packaged with this module
94
97
# FileList = @()
95
98
99
+
CompatiblePSEditions=@('Core','Desktop')
100
+
96
101
# 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.
0 commit comments