Merge branch 'master' of git://github.com/kayone/NzbDrone

pull/3113/head
Mark McDowall 13 years ago
commit 6c7fa1674e

@ -46,7 +46,7 @@
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants> <DefineConstants>TRACE;DOTNET2</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>

@ -132,7 +132,9 @@
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Ninject.2.2.1.0\lib\.NetFramework 4.0\Ninject.dll</HintPath> <HintPath>..\packages\Ninject.2.2.1.0\lib\.NetFramework 4.0\Ninject.dll</HintPath>
</Reference> </Reference>
<Reference Include="NLog, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL" /> <Reference Include="NLog">
<HintPath>Libraries\NLog.dll</HintPath>
</Reference>
<Reference Include="SubSonic.Core, Version=3.0.0.3, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="SubSonic.Core, Version=3.0.0.3, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>Libraries\SubSonic.Core.dll</HintPath> <HintPath>Libraries\SubSonic.Core.dll</HintPath>

@ -31,12 +31,9 @@ namespace NzbDrone
IISController.StopServer(); IISController.StopServer();
IISController.StartServer(); IISController.StartServer();
#if DEBUG #if DEBUG
Attach(); Attach();
#endif #endif
try try
{ {
Logger.Info("Starting default browser. {0}",IISController.AppUrl); Logger.Info("Starting default browser. {0}",IISController.AppUrl);
@ -60,6 +57,7 @@ namespace NzbDrone
Console.ReadLine(); Console.ReadLine();
} }
#if DEBUG
private static void Attach() private static void Attach()
{ {
if (Debugger.IsAttached) if (Debugger.IsAttached)
@ -91,7 +89,7 @@ namespace NzbDrone
} }
} }
} }
#endif
private static void AppDomainException(object excepion) private static void AppDomainException(object excepion)
{ {

Loading…
Cancel
Save