1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00

17 lines
429 B
C#
Raw Normal View History

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