Skip to content

Update module manifest to match current module #1267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions module/PowerShellEditorServices/PowerShellEditorServices.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,27 @@ RootModule = if ($PSEdition -eq 'Core')
}

# Version number of this module.
ModuleVersion = '2.0.0'
ModuleVersion = '2.1.0'

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

# Author of this module
Author = 'Microsoft'
Author = 'Microsoft Corporation'

# Company or vendor of this module
CompanyName = 'Microsoft'
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = '(c) 2017 Microsoft. All rights reserved.'
Copyright = '(c) Microsoft Corporation'

# Description of the functionality provided by this module
# Description = ''

# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = ''
# NOTE: The syntax used above in the manifest means this manifest cannot be read in PS 4 or below.
# Instead this is just an informative field.
PowerShellVersion = '5.1'

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

# Minimum version of Microsoft .NET Framework required by this module
# DotNetFrameworkVersion = ''
# NOTE: We check this later, so that the error message is communicated properly to the user
# DotNetFrameworkVersion = '4.6.1'

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

CompatiblePSEditions = @('Core', 'Desktop')

# 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 = @{

Expand Down