PSModuleBuildHelper.psd1

#
# Module manifest for module 'psmodulebuildhelper'
#
# Generated by: Paul Broadwith
#
# Generated on: 21/04/2018
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'psmodulebuildhelper.psm1'

# Version number of this module.
ModuleVersion = '0.2.0'

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = 'a4fafe75-2633-42b1-b88a-9d56921073a7'

# Author of this module
Author = 'Paul Broadwith'

# Company or vendor of this module
CompanyName = 'Paul Broadwith'

# Copyright statement for this module
Copyright = '(c) 2018 Paul Broadwith'

# Description of the functionality provided by this module
Description = 'PowerShell module build helper functions.'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()

# 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.
FunctionsToExport = 'Get-BuildEnvironment', 'Get-BuildItem', 
               'Get-BuildOperatingSystemDetail', 'Get-BuildPowerShellDetail', 
               'Get-BuildReleaseNote', 'Get-BuildScript', 'Get-BuildSystem', 
               'Get-BuildSystemEnvironment', 'Get-ChangelogVersion', 
               'Get-FunctionParameter', 'Get-GitBranchName', 'Get-GitChange', 
               'Get-GitLastCommitHash', 'Get-GitLastCommitMessage', 
               'Get-ManifestVersion', 'Get-NextReleaseVersion', 
               'Get-PowerShellGalleryVersion', 'Get-ProjectEnvironment', 
               'Get-ProjectRoot', 'Get-ReleaseType', 'Get-SourcePath', 
               'Get-TestEnvironment', 'Hide-SensitiveData', 
               'Initialize-BuildDependency', 'Initialize-TestEnvironment', 
               'Install-ChocolateyPackage', 'Install-DependentModule', 
               'New-GitHubRelease'

# 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.
AliasesToExport = '*'

# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
# FileList = @()

# 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 = 'build', 'invoke-build', 'module', 'helper', 'testing'

        # A URL to the license for this module.
        LicenseUri = 'https://github.com/pauby/psmodulebuildhelper/blob/master/LICENSE'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/pauby/psmodulebuildhelper'

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

        # ReleaseNotes of this module
        ReleaseNotes = 'v0.2.0 21 April 2018
* Changed the logic of release notes being used - only use them if nothing is in the ReleaseNotes field of the manifest and then use the release notes from the changelog or if we can''t extract them use the URL to the changelog itself;
* The Initialize-TestEnvironment function now loads the module being tested into the Global scope. This was to get around the issue of it being loaded inside this modules'' scope;
* Removed required module ''Configuration'';
* Added required module ''PowerShellGet'';
* Renamed ''buildoutput'' folder to ''releases'';
* Fixed issue with Initialize-TestEnvironment function which was showing errors trying to remove the module being tested when it hadn''t been loaded;
* Added option to add content to the top and bottom of the module script. This is done using the ModuleScript.Header and ModuleScript.Footer properties in the build configuration file. These values must be strings but can be a multi-line script (ie. @"<CONTENT>"@);
* Rewrote Get-BuildReleaseNote function as the regular expression didn''t always work as I wanted. The function now looks a bit clunky but it works;
'


    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}