From b3c1a9a929d5f57e3c760087ec9e9950bd1e7aff Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 5 May 2020 21:32:08 -0400 Subject: move example projects into a subfolder --- Examples/States/Program.cs | 12 ++++++++++++ Examples/States/StatesSample.csproj | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Examples/States/Program.cs create mode 100644 Examples/States/StatesSample.csproj (limited to 'Examples/States') diff --git a/Examples/States/Program.cs b/Examples/States/Program.cs new file mode 100644 index 0000000..8fc42b8 --- /dev/null +++ b/Examples/States/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace StatesSample +{ + public static class Program + { + private static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Examples/States/StatesSample.csproj b/Examples/States/StatesSample.csproj new file mode 100644 index 0000000..ac7b5b7 --- /dev/null +++ b/Examples/States/StatesSample.csproj @@ -0,0 +1,12 @@ + + + + Exe + netcoreapp3.1 + + + + + + + -- cgit 1.4.1