PowerShellBuild.psm1
# Dot source public functions $private = @(Get-ChildItem -Path ([IO.Path]::Combine($PSScriptRoot, 'Private/*.ps1')) -Recurse) $public = @(Get-ChildItem -Path ([IO.Path]::Combine($PSScriptRoot, 'Public/*.ps1')) -Recurse) foreach ($import in $public + $private) { try { . $import.FullName } catch { throw "Unable to dot source [$($import.FullName)]" } } data LocalizedData { # Load here in case Import-LocalizedData is not available ConvertFrom-StringData @' NoCommandsExported=No commands have been exported. Skipping markdown generation. FailedToGenerateMarkdownHelp=Failed to generate markdown help. : {0} AddingFileToPsm1=Adding [{0}] to PSM1 MakeCabNotAvailable=MakeCab.exe is not available. Cannot create help cab. DirectoryAlreadyExists=Directory already exists [{0}]. PathLongerThan3Chars=`$Path [{0}] must be longer than 3 characters. BuildSystemDetails=Build System Details: BuildModule=Build Module: {0}`:{1} PowerShellVersion=PowerShell Version: {0} EnvironmentVariables={0}`Environment variables: PublishingVersionToRepository=Publishing version [{0}] to repository [{1}]... FolderDoesNotExist=Folder does not exist: {0} PathArgumentMustBeAFolder=The Path argument must be a folder. File paths are not allowed. UnableToFindModuleManifest=Unable to find module manifest [{0}]. Can't import module PesterTestsFailed=One or more Pester tests failed CodeCoverage=Code Coverage Type=Type CodeCoverageLessThanThreshold=Code coverage: [{0}] is [{1:p}], which is less than the threshold of [{2:p}] CodeCoverageCodeCoverageFileNotFound=Code coverage file [{0}] not found. SeverityThresholdSetTo=SeverityThreshold set to: {0} PSScriptAnalyzerResults=PSScriptAnalyzer results: ScriptAnalyzerErrors=One or more ScriptAnalyzer errors were found! ScriptAnalyzerWarnings=One or more ScriptAnalyzer warnings were found! ScriptAnalyzerIssues=One or more ScriptAnalyzer issues were found! '@ } $importLocalizedDataSplat = @{ BindingVariable = 'LocalizedData' FileName = 'Messages.psd1' ErrorAction = 'SilentlyContinue' } Import-LocalizedData @importLocalizedDataSplat Export-ModuleMember -Function $public.Basename # $psakeTaskAlias = 'PowerShellBuild.psake.tasks' # Set-Alias -Name $psakeTaskAlias -Value $PSScriptRoot/psakeFile.ps1 # Export-ModuleMember -Alias $psakeTaskAlias # Invoke-Build task aliases $ibAlias = 'PowerShellBuild.IB.Tasks' Set-Alias -Name $ibAlias -Value $PSScriptRoot/IB.tasks.ps1 Export-ModuleMember -Alias $ibAlias |