DevolutionsGateway.psm1
$ModuleName = $(Get-Item $PSCommandPath).BaseName $Manifest = Import-PowerShellDataFile -Path $(Join-Path $PSScriptRoot "${ModuleName}.psd1") if (-Not (Test-Path 'variable:global:IsWindows')) { $script:IsWindows = $true; # Windows PowerShell 5.1 or earlier } if ($IsWindows) { [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12; } Export-ModuleMember -Cmdlet @($manifest.CmdletsToExport) $Public = @(Get-ChildItem -Path "$PSScriptRoot/Public/*.ps1" -Recurse) $Private = @(Get-ChildItem -Path "$PSScriptRoot/Private/*.ps1" -Recurse) Foreach ($Import in @($Public + $Private)) { Try { . $Import.FullName } Catch { Write-Error -Message "Failed to import function $($Import.FullName): $_" } } Export-ModuleMember -Function @($Manifest.FunctionsToExport) |