You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
429 B
17 lines
429 B
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();
|
|
}
|
|
}
|
|
}
|