about summary refs log tree commit diff
path: root/Examples/States
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-05 21:32:08 -0400
committerBen Harris <ben@tilde.team>2020-05-05 21:32:08 -0400
commitb3c1a9a929d5f57e3c760087ec9e9950bd1e7aff (patch)
treea5fc840eeaca66fe9adb1604072bc01b6caa554b /Examples/States
parent2c4e412c189ef54c181ffad96667232eaf80fcef (diff)
move example projects into a subfolder
Diffstat (limited to 'Examples/States')
-rw-r--r--Examples/States/Program.cs12
-rw-r--r--Examples/States/StatesSample.csproj12
2 files changed, 24 insertions, 0 deletions
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 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>netcoreapp3.1</TargetFramework>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <ProjectReference Include="..\..\IrcStates\IrcStates.csproj" />
+  </ItemGroup>
+
+</Project>