add initial dotnet support

This commit is contained in:
Ruairidh MacLeod 2020-09-10 11:36:10 +00:00 committed by Anthony Sottile
parent a85b9f798d
commit 003e4c21e0
16 changed files with 203 additions and 3 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace dotnet_hooks_sln_repo
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello from dotnet!");
}
}
}