aboutsummaryrefslogtreecommitdiff
path: root/src/Emby.Server/Program.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-25 22:54:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-25 22:54:12 -0400
commitec4bb53acbcd692ec678b1ab2efbc3a8c9af82c8 (patch)
tree112ca6338864c59d6730796b5600b008a3626c3a /src/Emby.Server/Program.cs
parent21be035df03c860ef5bb16aa0e39a0f33f5ac35a (diff)
create .net core server solution
Diffstat (limited to 'src/Emby.Server/Program.cs')
-rw-r--r--src/Emby.Server/Program.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Emby.Server/Program.cs b/src/Emby.Server/Program.cs
new file mode 100644
index 000000000..06aed1aeb
--- /dev/null
+++ b/src/Emby.Server/Program.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace Emby.Server
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ }
+ }
+}