Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Minor updates to the PowerShell module manifest (#62)
Browse files Browse the repository at this point in the history
This a minor update to the module definition.
  • Loading branch information
idwilliams-2 authored May 23, 2018
1 parent e768c6e commit 7de553f
Showing 1 changed file with 38 additions and 8 deletions.
46 changes: 38 additions & 8 deletions PartnerCenterModule/PartnerCenterModule.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ ModuleVersion = '0.9.0.21'
# ID used to uniquely identify this module
GUID = '4a0bfb55-926c-4c31-8d05-50813b31c712'

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

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

# Copyright
Copyright = "Copyright (c) 2018 Microsoft Corporation. Licensed under MIT license."
# Copyright statement for this module
Copyright = 'Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Partner Center Powershell Module (preview)'
Expand Down Expand Up @@ -124,12 +124,42 @@ FunctionsToExport = @('Add-PCAuthentication',
'Test-PCAddress'
)

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

# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'CSP','PartnerCenter','Azure','Office','Customer','Subscription'

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Microsoft/PartnerCenterPowerShellModule/master/LICENSE'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Microsoft/PartnerCenterPowerShellModule'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Added non-plural cmdlets names to comply with PowerShell standards'

# Prerelease string of this module
# Prerelease = ''

# Flag to indicate whether the module requires explicit user acceptance for install/update
# RequireLicenseAcceptance = $false

# External dependent modules of this module
# ExternalModuleDependencies = @()

} # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
HelpInfoURI = 'http://aka.ms/PartnerCenterModule'

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
#DefaultCommandPrefix = ''

}
}

0 comments on commit 7de553f

Please sign in to comment.