Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/213c842050bc2fd9f88bed76f0b038e1f9ca3aa1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
10 changed files with
3 additions and
63 deletions
@ -74,14 +74,6 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\NLog.2.0.1.2\lib\net40\NLog.dll</HintPath>
</Reference>
<Reference Include= "SignalR, Version=0.5.1.10822, Culture=neutral, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\SignalR.Server.0.5.3\lib\net40\SignalR.dll</HintPath>
</Reference>
<Reference Include= "SignalR.Hosting.Common, Version=0.5.1.10822, Culture=neutral, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\SignalR.Hosting.Common.0.5.3\lib\net40\SignalR.Hosting.Common.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "Microsoft.CSharp" />
@ -125,7 +117,6 @@
<Compile Include= "Resolvers\QualitiesToAllowedResolver.cs" />
<Compile Include= "Resolvers\QualityTypesToIntResolver.cs" />
<Compile Include= "Settings\SettingsModule.cs" />
<Compile Include= "TinyIoCDependencyResolver.cs" />
<Compile Include= "TinyIoCNancyBootstrapper.cs" />
</ItemGroup>
<ItemGroup >
@ -1,40 +0,0 @@
using System ;
using System.Collections.Generic ;
using System.Linq ;
using SignalR ;
using TinyIoC ;
namespace NzbDrone.Api
{
public class TinyIoCDependencyResolver : DefaultDependencyResolver
{
private readonly TinyIoCContainer _container ;
public TinyIoCDependencyResolver ( TinyIoCContainer container )
{
_container = container ;
}
public override object GetService ( Type serviceType )
{
if ( _container . CanResolve ( serviceType ) )
{
return _container . Resolve ( serviceType ) ;
}
return base . GetService ( serviceType ) ;
}
public override IEnumerable < object > GetServices ( Type serviceType )
{
IEnumerable < object > services = new object [ ] { } ;
if ( _container . CanResolve ( serviceType ) )
{
services = _container . ResolveAll ( serviceType ) ;
}
return services . Concat ( base . GetServices ( serviceType ) ) ;
}
}
}
@ -5,6 +5,4 @@
<package id="Nancy" version="0.16.1" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.2" targetFramework="net40" />
<package id="NLog" version="2.0.1.2" targetFramework="net40" />
<package id="SignalR.Hosting.Common" version="0.5.3" targetFramework="net40" />
<package id="SignalR.Server" version="0.5.3" targetFramework="net40" />
</packages>
@ -17,7 +17,6 @@ namespace NzbDrone.App.Test
ContainerBuilder . Instance . Resolve < IEnumerable < IHandle > > ( ) . Should ( ) . NotBeEmpty ( ) ;
}
[Test]
public void should_be_able_to_resolve_indexers ( )
{
@ -1,5 +1,4 @@
using System.Collections.Generic ;
using System.Linq ;
using Newtonsoft.Json ;
namespace NzbDrone.Common.Contract
@ -107,10 +107,6 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Prowlin.0.9.4456.26422\lib\net40\Prowlin.dll</HintPath>
</Reference>
<Reference Include= "SignalR, Version=0.5.1.10822, Culture=neutral, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\SignalR.Server.0.5.3\lib\net40\SignalR.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Data" />
<Reference Include= "System.ServiceModel" />
@ -11,6 +11,5 @@
<package id="NLog" version="2.0.1.2" targetFramework="net40" />
<package id="NUnit" version="2.6.2" targetFramework="net40" />
<package id="Prowlin" version="0.9.4456.26422" targetFramework="net40" />
<package id="SignalR.Server" version="0.5.3" targetFramework="net40" />
<package id="Unity" version="2.1.505.2" targetFramework="net40" />
</packages>
@ -157,9 +157,6 @@
<Reference Include= "RestSharp" >
<HintPath > ..\packages\RestSharp.104.1\lib\net4\RestSharp.dll</HintPath>
</Reference>
<Reference Include= "SignalR" >
<HintPath > ..\packages\SignalR.Server.0.5.3\lib\net40\SignalR.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
@ -8,7 +8,5 @@
<package id="NLog" version="2.0.1.2" targetFramework="net40" />
<package id="Prowlin" version="0.9.4456.26422" targetFramework="net40" />
<package id="RestSharp" version="104.1" targetFramework="net40" />
<package id="SignalR.Hosting.Common" version="0.5.3" targetFramework="net40" />
<package id="SignalR.Server" version="0.5.3" targetFramework="net40" />
<package id="twitterizer" version="2.4.0.26532" />
</packages>
@ -11,6 +11,8 @@
<AssemblyName > NzbDrone.Libraries.Test</AssemblyName>
<TargetFrameworkVersion > v4.0</TargetFrameworkVersion>
<FileAlignment > 512</FileAlignment>
<SolutionDir Condition= "$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" > ..\</SolutionDir>
<RestorePackages > true</RestorePackages>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
@ -58,6 +60,7 @@
</ProjectReference>
</ItemGroup>
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project= "$(SolutionDir)\.nuget\nuget.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name= "BeforeBuild" >