mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
17 lines
429 B
C#
17 lines
429 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace NzbDrone.Test.Dummy
|
|
{
|
|
public class DummyApp
|
|
{
|
|
public const string DUMMY_PROCCESS_NAME = "NzbDrone.Test.Dummy";
|
|
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Dummy process. ID:{0} Path:{1}", Process.GetCurrentProcess().Id, Process.GetCurrentProcess().MainModule.FileName);
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|