about summary refs log tree commit diff
path: root/StatesSample
diff options
context:
space:
mode:
Diffstat (limited to 'StatesSample')
-rw-r--r--StatesSample/Program.cs12
-rw-r--r--StatesSample/StatesSample.csproj12
2 files changed, 24 insertions, 0 deletions
diff --git a/StatesSample/Program.cs b/StatesSample/Program.cs
new file mode 100644
index 0000000..8fc42b8
--- /dev/null
+++ b/StatesSample/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/StatesSample/StatesSample.csproj b/StatesSample/StatesSample.csproj
new file mode 100644
index 0000000..3107344
--- /dev/null
+++ b/StatesSample/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>