DscResource.DocGenerator.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'DscResource.DocGenerator.psm1' # Version number of this module. ModuleVersion = '0.4.0' GUID = 'fa8b017d-8e6e-414d-9ab7-c8ab9cb9e9a4' # Author of this module Author = 'DSC Community' # Company or vendor of this module CompanyName = 'DSC Community' # Copyright statement for this module Copyright = '(c) DSC Community contributors.' # Description of the functionality provided by this module Description = 'Functionality to help generate documentation for modules.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.0' <# 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. This will be automatically update by the build pipeline. #> FunctionsToExport = @('New-DscResourcePowerShellHelp','New-DscResourceWikiPage') <# 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. #> CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() <# 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. This must be set to the aliases to export since there is no way to tell the module builder (build pipeline) which aliases to add. #> AliasesToExport = @( 'Task.Generate_Conceptual_Help', 'Task.Generate_Wiki_Content' ) # DSC resources to export from this module DscResourcesToExport = @() <# 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. #> PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'DSC', 'Modules', 'documentation' # A URL to the license for this module. LicenseUri = 'https://github.com/dsccommunity/DscResource.DocGenerator/blob/master/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/dsccommunity/DscResource.DocGenerator' # ReleaseNotes of this module ReleaseNotes = '## [0.4.0-preview0001] - 2020-02-18 ### Added - Added build tasks `Generate_Wiki_Content` (that runs the cmdlet `New-DscResourceWikiPage`). The build task is primarily meant to be run by the project [Sampler''s](https://github.com/gaelcolas/Sampler) `build.ps1`. To make the task available for `Invoke-Build` in a repository that is based on [Sampler](https://github.com/gaelcolas/Sampler) add this module to required modules, and then in the `build.yaml` add the following. ```yaml ModuleBuildTasks: DscResource.DocGenerator: - ''Task.*'' ``` ## [0.3.0] - 2020-02-11 ### Added - Added build tasks `Generate_Conceptual_Help` (that runs the cmdlet `New-DscResourcePowerShellHelp`). The build task is primarily meant to be run by the project [Sampler''s](https://github.com/gaelcolas/Sampler) `build.ps1`. To make the task available for `Invoke-Build` in a repository that is based on [Sampler](https://github.com/gaelcolas/Sampler) add this module to required modules, and then in the `build.yaml` add the following. ```yaml ModuleBuildTasks: DscResource.DocGenerator: - ''Task.*'' ``` ### Fixed - Fix the description in the README.md. ## [0.2.0] - 2020-02-06 ### Added - New-DscResourcePowerShellHelp - Add new parameter `DestinationModulePath` to be able to set the path to a built module (for example) ([issue #9](https://github.com/dsccommunity/DscResource.DocGenerator/issues/9)). ### Fixes - New-DscResourcePowerShellHelp - Fixed comment-based help for the parameter `OutputPath` ([issue #8](https://github.com/dsccommunity/DscResource.DocGenerator/issues/8)). ## [0.1.1] - 2020-02-02 ### Added - Add cmdlet `New-DscResourcePowerShellHelp` to generate conceptual help for DSC resources. *This was moved from repo PowerShell/DscResource.Tests.* ### Fixed - Fixed unit tests to work cross platform. - Fix status badges in README.md. - Fix the description in the README.md. ' # Prerelease string of this module Prerelease = 'preview0001' } # End of PSData hashtable } # End of PrivateData hashtable } |