Skip to content

Commit 64526d8

Browse files
committed
added tags and publish script
1 parent e0847d5 commit 64526d8

2 files changed

Lines changed: 30 additions & 1 deletion

File tree

HashData.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ PrivateData = @{
9595
PSData = @{
9696

9797
# Tags applied to this module. These help with module discovery in online galleries.
98-
# Tags = @()
98+
Tags = @('hashtable','serialize','deserialize','pscustomobject','import','export','convert','Convertto','String')
9999

100100
# A URL to the license for this module.
101101
# LicenseUri = ''

publish.ps1

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[cmdletbinding()]
2+
Param(
3+
[Parameter(Mandatory)]
4+
[string]
5+
$APIkey
6+
)
7+
8+
$tags = @(
9+
"hashtable"
10+
,
11+
"serialize"
12+
,
13+
"deserialize"
14+
,
15+
"pscustomobject"
16+
,
17+
"import"
18+
,
19+
"export"
20+
,
21+
"convert"
22+
,
23+
"Convertto"
24+
,
25+
"String"
26+
)
27+
28+
29+
Publish-Module -NuGetApiKey $APIkey -Name .\poshdata.psd1

0 commit comments

Comments
 (0)