From e27784e3a642ec8e21af7863e52636c76fbf48eb Mon Sep 17 00:00:00 2001 From: dfinke Date: Fri, 15 Jan 2016 17:31:32 -0500 Subject: [PATCH] Fixed metadata --- ImportExcel.psd1 | 34 ++++++++++++++++++++++++++++++++-- PublishToGallery.ps1 | 6 +++--- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/ImportExcel.psd1 b/ImportExcel.psd1 index b9e2c7b..fdc2b81 100644 --- a/ImportExcel.psd1 +++ b/ImportExcel.psd1 @@ -4,7 +4,7 @@ RootModule = 'ImportExcel.psm1' # Version number of this module. -ModuleVersion = '1.93' +ModuleVersion = '1.94' # ID used to uniquely identify this module GUID = '60dd4136-feff-401a-ba27-a84458c57ede' @@ -76,7 +76,37 @@ AliasesToExport = '*' # FileList = @() # Private data to pass to the module specified in RootModule/ModuleToProcess -# PrivateData = '' +PrivateData = @{ + # PSData is module packaging and gallery metadata embedded in PrivateData + # It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages + # We had to do this because it's the only place we're allowed to extend the manifest + # https://connect.microsoft.com/PowerShell/feedback/details/421837 + PSData = @{ + # The primary categorization of this module (from the TechNet Gallery tech tree). + Category = "Scripting Excel" + + # Keyword tags to help users find this module via navigations and search. + Tags = @("Excel","EPPlus","Export","Import") + + # The web address of an icon which can be used in galleries to represent this module + #IconUri = "http://pesterbdd.com/images/Pester.png" + + # The web address of this module's project or support homepage. + ProjectUri = "https://github.com/dfinke/ImportExcel" + + # The web address of this module's license. Points to a page that's embeddable and linkable. + LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt" + + # Release notes for this particular version of the module + # ReleaseNotes = False + + # If true, the LicenseUrl points to an end-user license (not just a source license) which requires the user agreement before use. + # RequireLicenseAcceptance = "" + + # Indicates this is a pre-release/testing version of the module. + IsPrerelease = 'False' + } +} # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/PublishToGallery.ps1 b/PublishToGallery.ps1 index 3988f5a..d18485e 100644 --- a/PublishToGallery.ps1 +++ b/PublishToGallery.ps1 @@ -2,10 +2,10 @@ $p = @{ Name = "ImportExcel" NuGetApiKey = $NuGetApiKey - LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt" - Tag = "Excel","EPPlus","Export","Import" + #LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt" + #Tag = "Excel","EPPlus","Export","Import" ReleaseNote = "Fixed parameters and explicitly marked as $true" - ProjectUri = "https://github.com/dfinke/ImportExcel" + #ProjectUri = "https://github.com/dfinke/ImportExcel" } Publish-Module @p \ No newline at end of file