DeployConcept/src/CD_GenerateManifest.ps1
2024-06-07 20:21:38 +03:00

18 lines
724 B
PowerShell

$version = Get-Content VERSION
$config = @{
'Path' = '.\ConceptDeploy\ConceptDeploy.psd1'
'Author' = 'IRBorisov'
'CompanyName' = 'CIHT Concept'
'ModuleVersion' = "$version"
'RootModule' = 'ConceptDeploy.psm1'
'FunctionsToExport' = @('Initialize-Python', 'Install-PythonLibs', 'Install-PSLatest', 'Push-PythonPackage', 'Push-DLL', 'Expand-TarGZ'
'Get-ExchangePath', 'Get-ProjectsPath', 'Get-ServerDistr', 'Get-ConceptLocal',
'Save-DistrManifest', 'Open-DistrManifest', 'Install-Product', 'Enable-Product', 'Disable-Product')
'CmdletsToExport' = @()
'VariablesToExport' = ''
'AliasesToExport' = @()
'Description' = 'CIHT Concept tools deployment module'
}
New-ModuleManifest @config