summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/win_module_utils/library/csharp_util.ps1
blob: cf2dc45202a24c63775c6d522c7483b22a8a8288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#1powershell

#Requires -Module Ansible.ModuleUtils.Legacy
#AnsibleRequires -CSharpUtil Ansible.Test

$result = @{
    res = [Ansible.Test.OutputTest]::GetString()
    changed = $false
}

Exit-Json -obj $result