Init
This commit is contained in:
22
WatchdogConsoleHelper/Program.cs
Normal file
22
WatchdogConsoleHelper/Program.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Configuration;
|
||||
using MarketData.Utils;
|
||||
using Watchdog;
|
||||
// This is just a helper app for building and testing stuff for the service
|
||||
|
||||
namespace WatchdogConsoleHelper
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
List<ManagedProcess> managedProcessList=null;
|
||||
managedProcessList=ProcessManager.GetManagedProceses();
|
||||
ProcessManager.ManageProcesses(managedProcessList);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user