Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/3f3cc69da79daa23591688f94cb5b380e9c1ff44
You should set ROOT_URL correctly, otherwise the web may not work correctly.
43 changed files with
173 additions and
59 deletions
@ -46,13 +46,14 @@
<Reference Include= "Microsoft.AspNet.SignalR.Client" >
<HintPath > ..\packages\Microsoft.AspNet.SignalR.Client.1.1.3\lib\net40\Microsoft.AspNet.SignalR.Client.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "Microsoft.CSharp" />
<Reference Include= "System.Security" />
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup >
<Compile Include= "..\Common\CommonAssemblyInfo.cs" >
@ -269,6 +270,7 @@
<EmbeddedResource Include= "Scripts\hubs.js" />
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" />
</ItemGroup>
<Import Project= "..\Common\Microsoft.AspNet.SignalR.targets" />
@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.SignalR.Client" version="1.1.3" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
</packages>
@ -90,6 +90,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration />
@ -52,6 +52,10 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Nancy.Authentication.Basic.0.23.2\lib\net40\Nancy.Authentication.Basic.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
@ -63,9 +67,6 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Microsoft.AspNet.SignalR.Core.1.1.3\lib\net40\Microsoft.AspNet.SignalR.Core.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -215,6 +216,7 @@
<Compile Include= "Wanted\MissingModule.cs" />
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" >
<SubType > Designer</SubType>
</None>
@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -4,7 +4,7 @@
<package id="FluentValidation" version="5.4.0.0" targetFramework="net40" />
<package id="Nancy" version="0.23.2" targetFramework="net40" />
<package id="Nancy.Authentication.Basic" version="0.23.2" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="ValueInjecter" version="2.3.3" targetFramework="net40" />
</packages>
@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration />
@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration />
@ -39,6 +39,10 @@
<WarningLevel > 4</WarningLevel>
</PropertyGroup>
<ItemGroup >
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Configuration" />
<Reference Include= "System.Configuration.Install" />
@ -51,9 +55,6 @@
<Reference Include= "Loggly" >
<HintPath > ..\packages\loggly-csharp.2.3\lib\net35\Loggly.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -153,6 +154,7 @@
<Compile Include= "TryParseExtension.cs" />
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" >
<SubType > Designer</SubType>
</None>
@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="loggly-csharp" version="2.3" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="RestSharp" version="104.4.0" targetFramework="net40" />
<package id="SharpZipLib" version="0.86.0" targetFramework="net40" />
@ -71,11 +71,12 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Microsoft.Owin.Hosting.2.1.0\lib\net40\Microsoft.Owin.Hosting.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -2,7 +2,7 @@
<packages>
<package id="Microsoft.Owin" version="2.1.0" targetFramework="net40" />
<package id="Microsoft.Owin.Hosting" version="2.1.0" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="Owin" version="1.0" targetFramework="net40" />
</packages>
@ -51,6 +51,10 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\FluentValidation.5.4.0.0\lib\Net40\FluentValidation.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Data" />
<Reference Include= "System.Xml" />
@ -83,9 +87,6 @@
<Reference Include= "NCrunch.Framework" >
<HintPath > ..\packages\NCrunch.Framework.1.46.0.9\lib\net35\NCrunch.Framework.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -8,7 +8,7 @@
<package id="Moq" version="4.0.10827" />
<package id="NBuilder" version="3.0.1.1" />
<package id="NCrunch.Framework" version="1.46.0.9" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="NUnit" version="2.6.2" targetFramework="net40" />
<package id="Prowlin" version="0.9.4456.26422" targetFramework="net40" />
@ -1,3 +1,12 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="utf-8 "?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" /></startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -64,6 +64,10 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\Libraries\Growl.CoreLibrary.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
@ -82,9 +86,6 @@
<Reference Include= "MediaInfoDotNet" >
<HintPath > ..\packages\MediaInfoNet.0.3\lib\MediaInfoDotNet.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -3,7 +3,7 @@
<package id="FluentMigrator" version="1.1.1.0" targetFramework="net40" />
<package id="FluentValidation" version="5.4.0.0" targetFramework="net40" />
<package id="MediaInfoNet" version="0.3" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="Prowlin" version="0.9.4456.26422" targetFramework="net40" />
<package id="RestSharp" version="104.4.0" targetFramework="net40" />
@ -77,6 +77,10 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Nancy.Owin.0.23.2\lib\net40\Nancy.Owin.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.ServiceProcess" />
@ -84,9 +88,6 @@
<HintPath > ..\Libraries\Interop.NetFwTypeLib.dll</HintPath>
<EmbedInteropTypes > True</EmbedInteropTypes>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -14,7 +14,7 @@
<probing privatePath="libs" />
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.5 .0.0" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0 .0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
@ -5,7 +5,7 @@
<package id="Microsoft.Owin.Hosting" version="2.1.0" targetFramework="net40" />
<package id="Nancy" version="0.23.2" targetFramework="net40" />
<package id="Nancy.Owin" version="0.23.2" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="NLog.Schema" version="2.1.0" targetFramework="net40" />
<package id="Owin" version="1.0" targetFramework="net40" />
@ -68,6 +68,10 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Nancy.Owin.0.23.2\lib\net40\Nancy.Owin.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
@ -81,9 +85,6 @@
<Reference Include= "Moq" >
<HintPath > ..\packages\Moq.4.0.10827\lib\NET40\Moq.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -9,7 +9,7 @@
<package id="Moq" version="4.0.10827" targetFramework="net40" />
<package id="Nancy" version="0.23.2" targetFramework="net40" />
<package id="Nancy.Owin" version="0.23.2" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="NUnit" version="2.6.2" targetFramework="net40" />
<package id="Owin" version="1.0" targetFramework="net40" />
@ -45,6 +45,10 @@
<Reference Include= "FluentAssertions.Core" >
<HintPath > ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
@ -52,9 +56,6 @@
<Reference Include= "System.Xml" />
<Reference Include= "System.Xml.Linq" />
<Reference Include= "Microsoft.CSharp" />
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "nunit.framework" >
<HintPath > ..\packages\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
</Reference>
@ -64,6 +65,7 @@
<Compile Include= "Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="FluentAssertions" version="3.1.229" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NUnit" version="2.6.2" targetFramework="net40" />
</packages>
@ -6,6 +6,10 @@
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -38,12 +38,13 @@
<WarningLevel > 4</WarningLevel>
</PropertyGroup>
<ItemGroup >
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "Microsoft.CSharp" />
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup >
<Compile Include= "..\NzbDrone.Common\Properties\SharedAssemblyInfo.cs" >
@ -57,9 +58,6 @@
<Compile Include= "SignalrDependencyResolver.cs" />
<Compile Include= "SignalRMessage.cs" />
</ItemGroup>
<ItemGroup >
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\Microsoft.AspNet.SignalR.Core\Microsoft.AspNet.SignalR.Core.csproj" >
<Project > {1B9A82C4-BCA1-4834-A33E-226F17BE070B}</Project>
@ -74,6 +72,10 @@
<Name > NzbDrone.Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" />
</ItemGroup>
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project= "$(SolutionDir)\.nuget\NuGet.targets" Condition= "Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
</packages>
@ -7,7 +7,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.5 .0.0" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0 .0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
@ -44,6 +44,10 @@
<Reference Include= "FluentAssertions.Core" >
<HintPath > ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
@ -63,9 +67,6 @@
<Reference Include= "Moq" >
<HintPath > ..\packages\Moq.4.0.10827\lib\NET40\Moq.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -3,7 +3,7 @@
<package id="CommonServiceLocator" version="1.0" />
<package id="FluentAssertions" version="3.1.229" targetFramework="net40" />
<package id="Moq" version="4.0.10827" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="NUnit" version="2.6.2" targetFramework="net40" />
<package id="RestSharp" version="104.4.0" targetFramework="net40" />
@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration />
@ -37,11 +37,12 @@
<WarningLevel > 4</WarningLevel>
</PropertyGroup>
<ItemGroup >
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -9,6 +9,10 @@
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.0.1.0" newVersion="2.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="NLog.Schema" version="2.1.0" targetFramework="net40" />
</packages>
@ -6,6 +6,10 @@
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@ -71,13 +71,14 @@
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Microsoft.Owin.Hosting.2.1.0\lib\net40\Microsoft.Owin.Hosting.dll</HintPath>
</Reference>
<Reference Include= "Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\packages\Newtonsoft.Json.6.0.4\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "System.Drawing" />
<Reference Include= "System.Windows.Forms" />
<Reference Include= "Newtonsoft.Json" >
<HintPath > ..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include= "NLog" >
<HintPath > ..\packages\NLog.2.1.0\lib\net40\NLog.dll</HintPath>
</Reference>
@ -2,7 +2,7 @@
<packages>
<package id="Microsoft.Owin" version="2.1.0" targetFramework="net40" />
<package id="Microsoft.Owin.Hosting" version="2.1.0" targetFramework="net40" />
<package id="Newtonsoft.Json" version="5.0.8 " targetFramework="net40" />
<package id="Newtonsoft.Json" version="6.0.4 " targetFramework="net40" />
<package id="NLog" version="2.1.0" targetFramework="net40" />
<package id="Owin" version="1.0" targetFramework="net40" />
</packages>