mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00: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:
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user