PowerShellGet.psd1
@{ RootModule = 'PSGet.psm1' ModuleVersion = '0.5' GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' Copyright = '© Microsoft Corporation. All rights reserved.' PowerShellVersion = '3.0' Description = 'PowerShell Module for discovering, installing, updating and publishing PowerShell Modules.' FormatsToProcess = 'PSGet.Format.ps1xml' NestedModules = @('SourceTypes\PSGallery\PSGallery.psm1') FunctionsToExport = 'Install-Module', 'Find-Module', 'Update-Module', 'Publish-Module' VariablesToExport = "*" AliasesToExport = 'inmo', 'fimo', 'upmo', 'pumo' FileList = 'PSGet.psm1', 'PSGet.Format.ps1xml', 'PSGet.Resource.psd1', 'SourceTypes\PSGallery\PSGallery.psm1' HelpInfoURI = 'http://go.microsoft.com/fwlink/?LinkId=393271' } |