Skip to content

Commit

Permalink
Clean up module manifest syntax.
Browse files Browse the repository at this point in the history
While the existing PowerShell module manifest was syntactically
valid, PowerShell Gallery required me to remove Join-Path and the
spaces in my tag names.  This does not affect operation and will
not get a version bump.
  • Loading branch information
rhymeswithmogul committed Oct 16, 2020
1 parent d7c46e0 commit 0c8c8f0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions RdpToolkit.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@{

# Root module
RootModule = (Join-Path -Path 'src' -ChildPath 'RdpToolkit.psm1')
RootModule = 'src/RdpToolkit.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'
Expand All @@ -42,8 +42,8 @@ Description = 'Programatically generates Remote Desktop Connection files.'
PowerShellVersion = '5.1'

ScriptsToProcess = @(
(Join-Path -Path 'src' -ChildPath 'New-RdcFile.ps1'),
(Join-Path -Path 'src' -ChildPath 'Signatures.ps1')
'src/New-RdcFile.ps1',
'src/Signatures.ps1'
)

# 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.
Expand All @@ -67,11 +67,11 @@ AliasesToExport = @(
# List of all files packaged with this module.
# Note that this only includes files needed for production, not for development.
FileList = @(
(Join-Path -Path 'en-US' -ChildPath 'about_RdpToolkit.help.txt'),
(Join-Path -Path 'en-US' -ChildPath 'RdpToolkit-help.xml'),
(Join-Path -Path 'src' -ChildPath 'New-RdcFile.ps1'),
(Join-Path -Path 'src' -ChildPath 'RdpToolkit.psm1'),
(Join-Path -Path 'src' -ChildPath 'Signatures.ps1'),
'en-US/about_RdpToolkit.help.txt',
'en-US/RdpToolkit-help.xml',
'src/New-RdcFile.ps1',
'src/RdpToolkit.psm1',
'src/Signatures.ps1',
'ChangeLog',
'INSTALL',
'LICENSE',
Expand All @@ -86,7 +86,7 @@ PrivateData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('Remote Desktop', 'RDC', 'RDP', 'mstsc', 'msrdc', 'Terminal Services')
Tags = @('Remote-Desktop', 'RDC', 'RDP', 'mstsc', 'msrdc', 'Terminal-Services', 'rdpsign')

# A URL to the license for this module.
LicenseUri = 'https://www.gnu.org/licenses/agpl-3.0.en.html'
Expand Down

0 comments on commit 0c8c8f0

Please sign in to comment.