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.
19 lines
474 B
19 lines
474 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)
|
|
{
|
|
var process = Process.GetCurrentProcess();
|
|
|
|
Console.WriteLine("Dummy process. ID:{0} Name:{1} Path:{2}", process.Id, process.ProcessName, process.MainModule.FileName);
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|