From fae6ca32442ea0e64a5c72a352db49df52993b9b Mon Sep 17 00:00:00 2001 From: "Chris.Watts90@outlook.com" Date: Mon, 6 Mar 2017 14:59:20 +0000 Subject: [PATCH] Add Process.Start call to start browser on start (hardcoded to the 8800 localhost port and is for debug only) --- .../WindowsDataCenter/WindowsDataServiceHost/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs b/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs index 91104bc..4481a28 100644 --- a/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs +++ b/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -13,6 +14,7 @@ namespace WindowsDataServiceHost { var service = new DataCenterService(); service.Start(); + Process.Start("http://localhost:8800"); Console.WriteLine("Running DataService.."); Console.ReadLine(); service.Stop();