mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
PowerShell
18 lines
411 B
PowerShell
6 years ago
|
@{
|
||
|
RootModule = '--- NAME ---.psm1'
|
||
|
ModuleVersion = '--- VERSION ---'
|
||
|
GUID = '--- GUID ---'
|
||
|
Author = 'Ansible'
|
||
|
Copyright = 'Copyright (c) 2019 Ansible, licensed under MIT.'
|
||
|
Description = "Test for Ansible win_ps* modules"
|
||
|
PowerShellVersion = '3.0'
|
||
|
FunctionsToExport = @(
|
||
|
"--- FUNCTION ---"
|
||
|
)
|
||
|
PrivateData = @{
|
||
|
PSData = @{
|
||
|
--- PS_DATA ---
|
||
|
}
|
||
|
}
|
||
|
}
|