fix: update package manifest to make powershellgallery happy

This commit is contained in:
Rodweil, Theodor 2023-08-08 23:15:04 +02:00
parent 0b3f654bc2
commit 08dc46ca35
No known key found for this signature in database
GPG key ID: F8BC1B0EB1F9CCF5
2 changed files with 20 additions and 11 deletions

View file

@ -1,20 +1,29 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata> <metadata>
<id>victorykit.PSConfluencePublisher</id> <id>victorykit.PSConfluencePublisher</id>
<title>victorykit.PSConfluencePublisher</title> <title>PSConfluencePublisher</title>
<version>1.0.0</version> <version>1.0.0</version>
<description>standalone publisher for xconfluencebuilder</description> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<description> Standalone Atlassian Confluence publisher component for the
victorykit-xconfluencebuilder Sphinx extension, which is a (temporary )
drop-in replacement for sphinxcontrib.confluencebuilder. See
https://bitbucket.org/victorykit/psconfluencepublisher/src/master/README.md
, for a full description.</description>
<projectUrl>https://bitbucket.org/victorykit/psconfluencepublisher</projectUrl> <projectUrl>https://bitbucket.org/victorykit/psconfluencepublisher</projectUrl>
<authors>Victory Karma IT</authors> <owners>Victory Karma IT</owners>
<owners>Theodor Rodweil</owners> <authors>Theodor Rodweil</authors>
<license type="expression">DL-DE-BY-2.0</license> <licenseUrl>https://bitbucket.org/victorykit/psconfluencepublisher/src/master/LICENSE</licenseUrl>
<readme>.\README.md</readme> <readme>README.md</readme>
<copyright>Victory Karma IT</copyright> <releaseNotes>See
<tags>PowerShell</tags> https://bitbucket.org/victorykit/psconfluencepublisher/src/master/CHANGELOG.md
, for a full changelog.</releaseNotes>
<copyright>(c) 2023 Victory Karma IT. All rights reserved.</copyright>
<tags>PSModule PSGet Confluence</tags>
</metadata> </metadata>
<files> <files>
<file src="src\**\*" target="."/> <file src="src\**\*" target="."/>
<file src="README.md" target="." /> <file src="README.md" target="." />
<file src="LICENSE*" target="." />
</files> </files>
</package> </package>

View file

@ -23,7 +23,7 @@ Copyright = '(c) victory-k.it. All rights reserved.'
RootModule = 'PSConfluencePublisher.psm1' RootModule = 'PSConfluencePublisher.psm1'
# Description of the functionality provided by this module # Description of the functionality provided by this module
# Description = '' Description = 'External Confluence publisher for xconfluencebuilder'
# Minimum version of the PowerShell engine required by this module # Minimum version of the PowerShell engine required by this module
# PowerShellVersion = '6.0' # PowerShellVersion = '6.0'
@ -88,7 +88,7 @@ AliasesToExport = @()
# List of all files packaged with this module # List of all files packaged with this module
FileList = @( FileList = @(
"manifest.schema.json" "schemas/manifest.schema.json"
) )
# 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. # 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.