File size: 1,397 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | #
# Module manifest for module 'HelpersCommon'
#
@{
RootModule = 'HelpersCommon.psm1'
ModuleVersion = '1.0'
GUID = 'cc1c8e94-51d1-4bc1-b508-62bc09f02f54'
CompanyName = 'Microsoft Corporation'
Copyright = 'Copyright (c) Microsoft Corporation.'
Description = 'Temporary module contains functions for using in tests'
FunctionsToExport = @(
'Add-TestDynamicType'
'Disable-Testhook'
'Enable-Testhook'
'Get-PlatformInfo'
'Get-RandomFileName'
'Get-WSManSupport'
'New-ComplexPassword'
'New-RandomHexString'
'Send-VstsLogFile'
'Set-TesthookResult'
'Start-NativeExecution'
'Test-CanWriteToPsHome'
'Test-IsElevated'
'Test-IsPreview',
'Test-IsReleaseCandidate'
'Test-IsRoot'
'Test-IsVstsLinux'
'Test-IsVstsWindows'
'Test-IsWindowsArm64'
'Test-IsWinServer2012R2'
'Test-IsWinWow64'
'Test-IsWindows2016'
'Test-TesthookIsSet'
'Wait-FileToBePresent'
'Wait-UntilTrue'
'Initialize-PSDefaultParameterValue'
'Reset-DefaultParameterValueStack'
'Get-DefaultParameterValueStack'
'Test-PSDefaultParameterValue'
'Push-DefaultParameterValueStack'
'Pop-DefaultParameterValueStack'
'Get-HelpNetworkTestCases'
)
CmdletsToExport= @()
AliasesToExport= @()
}
|