Skip to content

Commit be843dd

Browse files
committed
NuGet package version mismatches, EF was too high, Json.NET was too low. Normalized to JSONAPI.EntityFramework's existing versions. Unsure of implications of upgrading our dependencies at this point?
1 parent 6042d0e commit be843dd

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,13 @@
4040
<WarningLevel>4</WarningLevel>
4141
</PropertyGroup>
4242
<ItemGroup>
43-
<Reference Include="EntityFramework">
44-
<HintPath>..\..\packages\EntityFramework.6.1.2\lib\net45\EntityFramework.dll</HintPath>
43+
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
44+
<SpecificVersion>False</SpecificVersion>
45+
<HintPath>..\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.dll</HintPath>
4546
</Reference>
46-
<Reference Include="EntityFramework.SqlServer">
47-
<HintPath>..\..\packages\EntityFramework.6.1.2\lib\net45\EntityFramework.SqlServer.dll</HintPath>
47+
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.SqlServer.dll</HintPath>
4850
</Reference>
4951
<Reference Include="Microsoft.CSharp" />
5052
<Reference Include="Microsoft.Owin">
@@ -55,7 +57,7 @@
5557
</Reference>
5658
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
5759
<SpecificVersion>False</SpecificVersion>
58-
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
60+
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5961
</Reference>
6062
<Reference Include="Owin">
6163
<HintPath>..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="EntityFramework" version="6.1.2" targetFramework="net45" />
3+
<package id="EntityFramework" version="6.1.1" targetFramework="net45" />
44
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.2" targetFramework="net45" />
55
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.2" targetFramework="net45" />
66
<package id="Microsoft.AspNet.WebApi.Owin" version="5.2.2" targetFramework="net45" />
77
<package id="Microsoft.Owin" version="3.0.0" targetFramework="net45" />
88
<package id="Microsoft.Owin.Host.SystemWeb" version="3.0.0" targetFramework="net45" />
9-
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
9+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
1010
<package id="Owin" version="1.0" targetFramework="net45" />
1111
</packages>

0 commit comments

Comments
 (0)