Skip to content

Commit dd907d9

Browse files
author
Chris Santero
committed
fix assembly reference issues
1 parent 19a7e88 commit dd907d9

File tree

5 files changed

+23
-19
lines changed

5 files changed

+23
-19
lines changed

JSONAPI.TodoMVC.API.Tests/JSONAPI.TodoMVC.API.Tests.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@
6161
<Reference Include="Microsoft.Owin.Testing">
6262
<HintPath>..\..\packages\Microsoft.Owin.Testing.3.0.0\lib\net45\Microsoft.Owin.Testing.dll</HintPath>
6363
</Reference>
64-
<Reference Include="Newtonsoft.Json">
65-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
64+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
65+
<SpecificVersion>False</SpecificVersion>
66+
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
6667
</Reference>
6768
<Reference Include="NMemory">
6869
<HintPath>..\..\packages\NMemory.1.0.1\lib\net45\NMemory.dll</HintPath>
@@ -77,12 +78,12 @@
7778
<Reference Include="System.Net.Http" />
7879
<Reference Include="System.Net.Http.Formatting, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7980
<SpecificVersion>False</SpecificVersion>
80-
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll</HintPath>
81+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll</HintPath>
8182
</Reference>
8283
<Reference Include="System.Transactions" />
8384
<Reference Include="System.Web.Http, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
8485
<SpecificVersion>False</SpecificVersion>
85-
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll</HintPath>
86+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll</HintPath>
8687
</Reference>
8788
<Reference Include="System.Xml" />
8889
<Reference Include="System.Xml.Linq" />

JSONAPI.TodoMVC.API.Tests/app.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
<assemblyIdentity name="System.Web.Http.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
2323
<bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" />
2424
</dependentAssembly>
25+
<dependentAssembly>
26+
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
27+
<bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
28+
</dependentAssembly>
2529
</assemblyBinding>
2630
</runtime>
2731
<entityFramework>

JSONAPI.TodoMVC.API/JSONAPI.TodoMVC.API.csproj

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@
4242
<ItemGroup>
4343
<Reference Include="Autofac, Version=3.5.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
4444
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\..\packages\Autofac.3.5.0\lib\net40\Autofac.dll</HintPath>
45+
<HintPath>..\packages\Autofac.3.5.2\lib\net40\Autofac.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Autofac.Integration.Owin, Version=3.1.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
4848
<SpecificVersion>False</SpecificVersion>
49-
<HintPath>..\..\packages\Autofac.Owin.3.1.0\lib\net45\Autofac.Integration.Owin.dll</HintPath>
49+
<HintPath>..\packages\Autofac.Owin.3.1.0\lib\net45\Autofac.Integration.Owin.dll</HintPath>
5050
</Reference>
5151
<Reference Include="Autofac.Integration.WebApi, Version=3.4.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
5252
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\..\packages\Autofac.WebApi2.3.4.0\lib\net45\Autofac.Integration.WebApi.dll</HintPath>
53+
<HintPath>..\packages\Autofac.WebApi2.3.4.0\lib\net45\Autofac.Integration.WebApi.dll</HintPath>
5454
</Reference>
5555
<Reference Include="Autofac.Integration.WebApi.Owin, Version=3.2.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
5656
<SpecificVersion>False</SpecificVersion>
57-
<HintPath>..\..\packages\Autofac.WebApi2.Owin.3.2.0\lib\net45\Autofac.Integration.WebApi.Owin.dll</HintPath>
57+
<HintPath>..\packages\Autofac.WebApi2.Owin.3.2.0\lib\net45\Autofac.Integration.WebApi.Owin.dll</HintPath>
5858
</Reference>
5959
<Reference Include="EntityFramework">
6060
<HintPath>..\..\packages\EntityFramework.6.1.2\lib\net45\EntityFramework.dll</HintPath>
@@ -73,7 +73,7 @@
7373
</Reference>
7474
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
7575
<SpecificVersion>False</SpecificVersion>
76-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
76+
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
7777
</Reference>
7878
<Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">
7979
<SpecificVersion>False</SpecificVersion>
@@ -82,7 +82,7 @@
8282
<Reference Include="System.Net.Http" />
8383
<Reference Include="System.Net.Http.Formatting, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
8484
<SpecificVersion>False</SpecificVersion>
85-
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll</HintPath>
85+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll</HintPath>
8686
</Reference>
8787
<Reference Include="System.Web.DynamicData" />
8888
<Reference Include="System.Web.Entity" />
@@ -95,15 +95,11 @@
9595
<Reference Include="System.Web.Extensions" />
9696
<Reference Include="System.Web.Http, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
9797
<SpecificVersion>False</SpecificVersion>
98-
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll</HintPath>
98+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll</HintPath>
9999
</Reference>
100100
<Reference Include="System.Web.Http.Owin, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
101101
<SpecificVersion>False</SpecificVersion>
102-
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.Owin.5.2.2\lib\net45\System.Web.Http.Owin.dll</HintPath>
103-
</Reference>
104-
<Reference Include="System.Web.Http.WebHost, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
105-
<SpecificVersion>False</SpecificVersion>
106-
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.2\lib\net45\System.Web.Http.WebHost.dll</HintPath>
102+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Owin.5.2.2\lib\net45\System.Web.Http.Owin.dll</HintPath>
107103
</Reference>
108104
<Reference Include="System.Xml.Linq" />
109105
<Reference Include="System.Drawing" />

JSONAPI.TodoMVC.API/Web.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@
7171
<assemblyIdentity name="System.Web.Http.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
7272
<bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" />
7373
</dependentAssembly>
74+
<dependentAssembly>
75+
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
76+
<bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
77+
</dependentAssembly>
7478
</assemblyBinding>
7579
</runtime>
7680
<entityFramework>

JSONAPI.TodoMVC.API/packages.config

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Autofac" version="3.5.0" targetFramework="net45" />
3+
<package id="Autofac" version="3.5.2" targetFramework="net45" />
44
<package id="Autofac.Owin" version="3.1.0" targetFramework="net45" />
5+
<package id="Autofac.WebApi" version="3.1.0" targetFramework="net45" />
56
<package id="Autofac.WebApi2" version="3.4.0" targetFramework="net45" />
67
<package id="Autofac.WebApi2.Owin" version="3.2.0" targetFramework="net45" />
78
<package id="EntityFramework" version="6.1.2" targetFramework="net45" />
8-
<package id="Microsoft.AspNet.WebApi" version="5.2.2" targetFramework="net45" />
99
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.2" targetFramework="net45" />
1010
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.2" targetFramework="net45" />
1111
<package id="Microsoft.AspNet.WebApi.Owin" version="5.2.2" targetFramework="net45" />
12-
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.2" targetFramework="net45" />
1312
<package id="Microsoft.Owin" version="3.0.0" targetFramework="net45" />
1413
<package id="Microsoft.Owin.Host.SystemWeb" version="3.0.0" targetFramework="net45" />
1514
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />

0 commit comments

Comments
 (0)