ansible/test/integration/targets/setup_win_printargv/files/PrintArgv.cs
Jordan Borean 97d2d4512f
Separated ps module_util test targets, added WebRequest tests (#67914)
* Separated ps module_util test targets, added WebRequest tests

* Simplify header test
2020-03-02 16:12:08 +10:00

13 lines
283 B
C#

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));
}
}
}