Skip to content

Commit 61385b1

Browse files
author
Robin Stolpe
committed
fixed tag issue
1 parent cc18009 commit 61385b1

3 files changed

Lines changed: 21 additions & 23 deletions

File tree

.src/WinSoftwareUpdate.psd1.source

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
PSData = @{
120120

121121
# Tags applied to this module. These help with module discovery in online galleries.
122-
# Tags = @({{tags}})
122+
Tags = @({{tags}})
123123

124124
# A URL to the license for this module.
125125
LicenseUri = '{{licenseuri}}'

RSModuleBuilder.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Changes on every build
1212
[string]$Version = "0.0.3"
1313
[string]$PowerShellVersion = "5.1"
14-
[string]$Tags = "windows, maintenance, autoupdate, autoupdate-script, psmodule, update, winget, windows10, windows11"
14+
[string]$Tags = '"windows", "maintenance", "autoupdate", "autoupdate-script", "psmodule", "update", "winget", "windows10", "windows11"'
1515
[string]$ProcessorArchitecture = ""
1616
[string]$LicenseUrl = "https://github.com/rstolpe/WinSoftwareUpdate/blob/main/LICENSE"
1717
[string]$ProjectUrl = "https://github.com/rstolpe/WinSoftwareUpdate"

WinSoftwareUpdate/WinSoftwareUpdate.psd1

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
MIT License
33
44
Copyright (C) 2023 Robin Stolpe.
5-
robin@stolpe.io
6-
<https://stolpe.io>
75
86
Permission is hereby granted, free of charge, to any person obtaining a copy
97
of this software and associated documentation files (the "Software"), to deal
@@ -29,37 +27,37 @@
2927
#
3028
# Generated by: Robin Stolpe
3129
#
32-
# Generated on: 2023-01-17
30+
# Generated on: 2023-01-18
3331
#
3432

3533
@{
3634

3735
# Script module or binary module file associated with this manifest.
38-
RootModule = '.\WinSoftwareUpdate.psm1'
36+
RootModule = '.\WinSoftwareUpdate.psm1'
3937

4038
# Version number of this module.
41-
ModuleVersion = '0.0.1'
39+
ModuleVersion = '0.0.3'
4240

4341
# Supported PSEditions
4442
# CompatiblePSEditions = @()
4543

4644
# ID used to uniquely identify this module
47-
GUID = '4699dd6a-cc61-4929-97ed-11de5eb6bc01'
45+
GUID = '4699dd6a-cc61-4929-97ed-11de5eb6bc01'
4846

4947
# Author of this module
50-
Author = 'Robin Stolpe'
48+
Author = 'Robin Stolpe'
5149

5250
# Company or vendor of this module
53-
CompanyName = 'Stolpe.io'
51+
CompanyName = 'Stolpe.io'
5452

5553
# Copyright statement for this module
56-
Copyright = '(c) 2023 Robin Stolpe. All rights reserved.'
54+
Copyright = '(c) 2023 Robin Stolpe. All rights reserved.'
5755

5856
# Description of the functionality provided by this module
59-
Description = 'This module will help you to update your software on your Windows 10 and Windows 11 machines.'
57+
Description = 'This module will help you to update your software on your Windows 10 and Windows 11 machines.'
6058

6159
# Minimum version of the PowerShell engine required by this module
62-
PowerShellVersion = '5.1'
60+
PowerShellVersion = '5.1'
6361

6462
# Name of the PowerShell host required by this module
6563
# PowerShellHostName = ''
@@ -95,16 +93,16 @@
9593
# NestedModules = @()
9694

9795
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
98-
FunctionsToExport = "Update-RSWinSoftware", "Confirm-RSWinGet", "Get-RSInstallInfo", "Install-RSVCLib", "Start-RSWinGet"
96+
FunctionsToExport = "Update-RSWinSoftware", "Confirm-RSWinGet", "Get-RSInstallInfo", "Install-RSVCLib", "Start-RSWinGet"
9997

10098
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
101-
CmdletsToExport = @()
99+
CmdletsToExport = @()
102100

103101
# Variables to export from this module
104-
VariablesToExport = '*'
102+
VariablesToExport = '*'
105103

106104
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
107-
AliasesToExport = @()
105+
AliasesToExport = @()
108106

109107
# DSC resources to export from this module
110108
# DscResourcesToExport = @()
@@ -116,27 +114,27 @@
116114
# FileList = @()
117115

118116
# 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.
119-
PrivateData = @{
117+
PrivateData = @{
120118

121119
PSData = @{
122120

123121
# Tags applied to this module. These help with module discovery in online galleries.
124-
# Tags = @(windows, maintenance, autoupdate, autoupdate-script, psmodule, update, winget, windows10, windows11)
122+
Tags = @("windows", "maintenance", "autoupdate", "autoupdate-script", "psmodule", "update", "winget", "windows10", "windows11")
125123

126124
# A URL to the license for this module.
127-
LicenseUri = 'https://github.com/rstolpe/WinSoftwareUpdate/blob/main/LICENSE'
125+
LicenseUri = 'https://github.com/rstolpe/WinSoftwareUpdate/blob/main/LICENSE'
128126

129127
# A URL to the main website for this project.
130-
ProjectUri = 'https://github.com/rstolpe/WinSoftwareUpdate'
128+
ProjectUri = 'https://github.com/rstolpe/WinSoftwareUpdate'
131129

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

135133
# ReleaseNotes of this module
136-
ReleaseNotes = 'https://github.com/rstolpe/WinSoftwareUpdate/releases'
134+
ReleaseNotes = 'https://github.com/rstolpe/WinSoftwareUpdate/releases'
137135

138136
# Prerelease string of this module
139-
Prerelease = ''
137+
Prerelease = ''
140138

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

0 commit comments

Comments
 (0)