1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00
Radarr/NzbDrone.Test.Dummy/DummyApp.cs

17 lines
429 B
C#
Raw Normal View History

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