Add Process.Start call to start browser on start (hardcoded to the 8800 localhost port and is for debug only)

This commit is contained in:
Chris.Watts90@outlook.com 2017-03-06 14:59:20 +00:00
parent d36645de2b
commit fae6ca3244

View File

@ -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();