Dotnet publish tests
This commit is contained in:
parent
cd357cb273
commit
07eb7ef28f
43 changed files with 1826 additions and 129 deletions
18
test/TestProjects/TestAppWithArgs/Program.cs
Normal file
18
test/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