ansible/test/integration/targets/win_dsc/templates/xTestDsc.psd1
Jordan Borean 978a979566
win_dsc: improved parameter handling (#31556)
* win_dsc: improved parameter handling

* removed uneeded try/catch leftover from testing

* removed undeed return values

* added custom DSC to fully test out casting

* fix up codestyle issues

* using new Requires ps version check

* fixed up error message check on earlier ps version
2017-11-06 09:44:04 +10:00

12 lines
335 B
PowerShell

@{
ModuleVersion = '{{item.version}}'
GUID = '{{item.version|to_uuid}}'
Author = 'Ansible'
CompanyName = 'Ansible'
Copyright = '(c) 2017'
Description = 'Test DSC Resource for Ansible integration tests'
PowerShellVersion = '5.0'
CLRVersion = '4.0'
FunctionsToExport = '*'
CmdletsToExport = '*'
}