2011-10-07 06:36:04 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Test.Dummy
|
|
|
|
|
{
|
2011-11-14 03:37:36 +00:00
|
|
|
|
public class DummyApp
|
2011-10-07 06:36:04 +00:00
|
|
|
|
{
|
2011-11-14 03:37:36 +00:00
|
|
|
|
public const string DUMMY_PROCCESS_NAME = "NzbDrone.Test.Dummy";
|
|
|
|
|
|
2011-10-07 06:36:04 +00:00
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Dummy process. ID:{0} Path:{1}", Process.GetCurrentProcess().Id, Process.GetCurrentProcess().MainModule.FileName);
|
|
|
|
|
Console.ReadLine();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|