mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed Environment Variable conflict in IISProvider
This commit is contained in:
parent
fbf7d20c5d
commit
bc5307a4d3
8 changed files with 91 additions and 14 deletions
16
NzbDrone.Test.Dummy/DummyApp.cs
Normal file
16
NzbDrone.Test.Dummy/DummyApp.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
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();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue