Skip to content

Commit bfe5059

Browse files
authored
Update module manifest to match current module (#1267)
* Update module manifest to match current module * Increment module version
1 parent 1ff55ec commit bfe5059

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

module/PowerShellEditorServices/PowerShellEditorServices.psd1

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,27 @@ RootModule = if ($PSEdition -eq 'Core')
1919
}
2020

2121
# Version number of this module.
22-
ModuleVersion = '2.0.0'
22+
ModuleVersion = '2.1.0'
2323

2424
# ID used to uniquely identify this module
2525
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'
2626

2727
# Author of this module
28-
Author = 'Microsoft'
28+
Author = 'Microsoft Corporation'
2929

3030
# Company or vendor of this module
31-
CompanyName = 'Microsoft'
31+
CompanyName = 'Microsoft Corporation'
3232

3333
# Copyright statement for this module
34-
Copyright = '(c) 2017 Microsoft. All rights reserved.'
34+
Copyright = '(c) Microsoft Corporation'
3535

3636
# Description of the functionality provided by this module
3737
# Description = ''
3838

3939
# 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'
4143

4244
# Name of the Windows PowerShell host required by this module
4345
# PowerShellHostName = ''
@@ -46,7 +48,8 @@ Copyright = '(c) 2017 Microsoft. All rights reserved.'
4648
# PowerShellHostVersion = ''
4749

4850
# 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'
5053

5154
# Minimum version of the common language runtime (CLR) required by this module
5255
# CLRVersion = ''
@@ -93,6 +96,8 @@ AliasesToExport = @()
9396
# List of all files packaged with this module
9497
# FileList = @()
9598

99+
CompatiblePSEditions = @('Core', 'Desktop')
100+
96101
# 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.
97102
PrivateData = @{
98103

0 commit comments

Comments
 (0)