mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
windows argv to string module utility (#28970)
* windows argv to string module utility * rebased PR with latest devel branch
This commit is contained in:
parent
ed342e8ce3
commit
b663f602bc
4 changed files with 191 additions and 1 deletions
13
test/integration/targets/win_module_utils/files/PrintArgv.cs
Normal file
13
test/integration/targets/win_module_utils/files/PrintArgv.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
// This has been compiled to an exe and uploaded to S3 bucket for argv test
|
||||
|
||||
namespace PrintArgv
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine(string.Join(System.Environment.NewLine, args));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue