DevOpsToolkit.psd1

@{
    RootModule           = 'DevOpsToolkit.psm1'
    ModuleVersion        = '1.8.4'
    GUID                 = '05b8dfba-f32f-464a-b808-99d59015d092'
    Author               = 'developer@it.integro.pl, witold.szal@it.integro.pl'
    CompanyName          = 'IT integro'
    Copyright            = '(c) 2020 IT integro. All rights reserved.'
    Description          = 'DevOps toolkit for Dynamics NAV developement automation'
    # Minimum version of the Windows PowerShell engine required by this module
    # PowerShellVersion = '5.1'
    RequiredModules      = @('BcContainerHelper')
    NestedModules        = @()
    FunctionsToExport    = @('Split-ITIObjectsTxtFile',
        'Join-ITIObjectsTxtFile',
        'Import-ITIObject',
        'Export-ITIObject',
        'Get-ITIAppManifestFile',
        'New-ITIDocsSiteTemplate',
        'New-ITIApplicationTemplate',
        'Restore-ComapnyData',
        'Import-AllAppsIntoBCContainer',
        'Copy-ITICSideControlsFromContainer',
        'Export-ITIObjectTranslation',
        'Import-ITIObjectTranslation',
        'Remove-ITIObjectTranslation')
    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.8.3 - Updated Application & DocsSite templates files"

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

}