test detection of C# dependencies

This commit is contained in:
Alan Hamlett 2015-09-29 20:42:47 -07:00
parent a3680af7d5
commit 7bc8ec006b
3 changed files with 57 additions and 6 deletions

View file

@ -0,0 +1,10 @@
using System;
public class Hello4
{
public static int Main(string[] args)
{
Console.WriteLine("Hello, World!");
return 0;
}
}