From 9c00b52e35fd81203645d4b9d7c5a69dfd7d4b53 Mon Sep 17 00:00:00 2001 From: Asher Garland Date: Sun, 6 Nov 2016 13:41:06 -0800 Subject: [PATCH] Added starter scaffold files for c# class and applciation main. --- root/name/Class1.cs | 13 +++++++++++++ root/name/Program.cs | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 root/name/Class1.cs create mode 100644 root/name/Program.cs diff --git a/root/name/Class1.cs b/root/name/Class1.cs new file mode 100644 index 0000000..a8176ca --- /dev/null +++ b/root/name/Class1.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace {%= name %} +{ + public class Class1 + { + } +} + diff --git a/root/name/Program.cs b/root/name/Program.cs new file mode 100644 index 0000000..a82fb36 --- /dev/null +++ b/root/name/Program.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace {%= name %} +{ + class Program + { + static void Main(string[] args) + { + } + } +} +