mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
Fixed metadata
This commit is contained in:
@@ -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 = ''
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user