mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-10 21:33:16 +00:00
Fixed metadata
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
RootModule = 'ImportExcel.psm1'
|
RootModule = 'ImportExcel.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '1.93'
|
ModuleVersion = '1.94'
|
||||||
|
|
||||||
# ID used to uniquely identify this module
|
# ID used to uniquely identify this module
|
||||||
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
|
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
|
||||||
@@ -76,7 +76,37 @@ AliasesToExport = '*'
|
|||||||
# FileList = @()
|
# FileList = @()
|
||||||
|
|
||||||
# Private data to pass to the module specified in RootModule/ModuleToProcess
|
# 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
|
# HelpInfo URI of this module
|
||||||
# HelpInfoURI = ''
|
# HelpInfoURI = ''
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
$p = @{
|
$p = @{
|
||||||
Name = "ImportExcel"
|
Name = "ImportExcel"
|
||||||
NuGetApiKey = $NuGetApiKey
|
NuGetApiKey = $NuGetApiKey
|
||||||
LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt"
|
#LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt"
|
||||||
Tag = "Excel","EPPlus","Export","Import"
|
#Tag = "Excel","EPPlus","Export","Import"
|
||||||
ReleaseNote = "Fixed parameters and explicitly marked as $true"
|
ReleaseNote = "Fixed parameters and explicitly marked as $true"
|
||||||
ProjectUri = "https://github.com/dfinke/ImportExcel"
|
#ProjectUri = "https://github.com/dfinke/ImportExcel"
|
||||||
}
|
}
|
||||||
|
|
||||||
Publish-Module @p
|
Publish-Module @p
|
||||||
Reference in New Issue
Block a user