DevOpsToolkit.psd1

@{
RootModule = 'DevOpsToolkit.psm1'
ModuleVersion = '1.2.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-ITIObjectsTxtFile',
                      'Join-ITIObjectsTxtFile',
                      'Import-ITIObject',
                      'Export-ITIObject',
                      'Get-ITIAppManifestFile',
                      'New-ITIDocsSiteTemplate',
                      'New-ITIApplicationTemplate')
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 = '1.2.0 - Introduce new DocsSite template with multilanguage support; Fix Application template typos'

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

}