2017-10-25 02:31:37 +00:00
|
|
|
using System;
|
2011-10-07 06:36:04 +00:00
|
|
|
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
|
|
|
{
|
2017-10-25 02:31:37 +00:00
|
|
|
public const string DUMMY_PROCCESS_NAME = "Lidarr.Test.Dummy";
|
2011-11-14 03:37:36 +00:00
|
|
|
|
2020-01-03 12:49:24 +00:00
|
|
|
private static void Main(string[] args)
|
2011-10-07 06:36:04 +00:00
|
|
|
{
|
2014-04-28 06:34:29 +00:00
|
|
|
var process = Process.GetCurrentProcess();
|
|
|
|
|
|
|
|
Console.WriteLine("Dummy process. ID:{0} Name:{1} Path:{2}", process.Id, process.ProcessName, process.MainModule.FileName);
|
2011-10-07 06:36:04 +00:00
|
|
|
Console.ReadLine();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|