23 lines
528 B
C#
23 lines
528 B
C#
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);
|
|
}
|
|
}
|
|
}
|