Skip to content

Commit 50541d2

Browse files
committed
upgrade json.net to version 6
1 parent 2623899 commit 50541d2

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

JsonLD.Portable/JsonLD.Portable.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,9 @@
110110
<Compile Include="Properties\AssemblyInfo.cs" />
111111
</ItemGroup>
112112
<ItemGroup>
113-
<Reference Include="Newtonsoft.Json">
113+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
114114
<HintPath>..\packages\Newtonsoft.Json.6.0.1\lib\portable-net45+wp80+win8\Newtonsoft.Json.dll</HintPath>
115+
<Private>True</Private>
115116
</Reference>
116117
</ItemGroup>
117118
<ItemGroup>

JsonLD.Portable/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="6.0.1" targetFramework="portable-net45+wp80+win+MonoAndroid10+MonoTouch10" />
3+
<package id="Newtonsoft.Json" version="6.0.1" targetFramework="portable45-net45+win8+wp8" />
44
</packages>

src/JsonLD/JsonLD.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
<Prefer32Bit>false</Prefer32Bit>
3737
</PropertyGroup>
3838
<ItemGroup>
39-
<Reference Include="Newtonsoft.Json, Version=4.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
40-
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\..\packages\Newtonsoft.Json.4.0.1\lib\40\Newtonsoft.Json.dll</HintPath>
39+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
40+
<HintPath>..\..\packages\Newtonsoft.Json.6.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
41+
<Private>True</Private>
4242
</Reference>
4343
<Reference Include="System" />
4444
<Reference Include="System.Core" />

src/JsonLD/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="4.0.1" targetFramework="net40-Client" />
3+
<package id="Newtonsoft.Json" version="6.0.1" targetFramework="net40-client" />
44
</packages>

tests/JsonLD.Test/JsonLD.Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
<Prefer32Bit>false</Prefer32Bit>
3737
</PropertyGroup>
3838
<ItemGroup>
39-
<Reference Include="Newtonsoft.Json, Version=4.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
40-
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\..\packages\Newtonsoft.Json.4.0.1\lib\40\Newtonsoft.Json.dll</HintPath>
39+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
40+
<HintPath>..\..\packages\Newtonsoft.Json.6.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
41+
<Private>True</Private>
4242
</Reference>
4343
<Reference Include="System" />
4444
<Reference Include="System.Core" />

tests/JsonLD.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="4.0.1" targetFramework="net45" />
3+
<package id="Newtonsoft.Json" version="6.0.1" targetFramework="net45" />
44
<package id="xunit" version="1.9.2" targetFramework="net45" />
55
<package id="xunit.extensions" version="1.9.2" targetFramework="net45" />
66
</packages>

0 commit comments

Comments
 (0)