Test directory refactoring step 1.
Moving TestProjects and TestPackages under root 'TestAssets' folder. Partial fix #1250
This commit is contained in:
parent
129bd03098
commit
3d14caceff
71 changed files with 36 additions and 39 deletions
18
TestAssets/TestProjects/TestAppWithArgs/Program.cs
Normal file
18
TestAssets/TestProjects/TestAppWithArgs/Program.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
|
||||
namespace ConsoleApplication
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
|
||||
Console.WriteLine($"I was passed {args.Length} args:");
|
||||
foreach (var arg in args)
|
||||
{
|
||||
Console.WriteLine($"arg: [{arg}]");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue