DevOpsToolkit.psd1

@{
RootModule = 'DevOpsToolkit.psm1'
ModuleVersion = '0.1.0'
GUID = '05b8dfba-f32f-464a-b808-99d59015d092'
Author = 'bartlomiej.szal'
CompanyName = 'IT integro'
Copyright = '(c) 2020 IT integro. All rights reserved.'
Description = 'DevOps toolkit for Dynamics NAV developemnt automation'
# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = '5.1'
RequiredModules = @('NavContainerHelper')
NestedModules = @()
FunctionsToExport = @('Split-ObjectsTxtFile',
                      'Join-ObjectsTxtFile',
                      'Import-Object',
                      'New-ProjectFromTemplate')
CmdletsToExport = @()
VariablesToExport = '*'
AliasesToExport = @()

PrivateData = @{
    PSData = @{
        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = @('DevOps', 'NAV', 'BusinessCentral')

        # A URL to the license for this module.
        # LicenseUri = ''

        # A URL to the main website for this project.
        ProjectUri = 'https://dev.azure.com/integroit/DevOpsToolkit'

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

        # ReleaseNotes of this module
        ReleaseNotes = '0.1.0 Adds new Import-Object command and extends the New-ProjectFromTemplate command (generates .gitignore in the project)'

    } # 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 = 'ITI'

}