mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 01:11:43 +00:00
14 lines
347 B
C#
14 lines
347 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace NzbDrone.Test.Dummy
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Dummy process. ID:{0} Path:{1}", Process.GetCurrentProcess().Id, Process.GetCurrentProcess().MainModule.FileName);
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|