DevOpsToolkit.psd1
@{ RootModule = 'DevOpsToolkit.psm1' ModuleVersion = '1.5.2' 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 = @(@{ModuleName = 'BcContainerHelper'; RequiredVersion = "1.0.8"; GUID = "8e034fbc-8c30-446d-bbc3-5b3be5392491" }) NestedModules = @() FunctionsToExport = @('Split-ITIObjectsTxtFile', 'Join-ITIObjectsTxtFile', 'Import-ITIObject', 'Export-ITIObject', 'Get-ITIAppManifestFile', 'New-ITIDocsSiteTemplate', 'New-ITIApplicationTemplate', 'Backup-CompanyData', 'Restore-ComapnyData') 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.5.2 - Add Scripts to backup and restore objects data' } # 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 = '' } |