Skip to content

Commit 0ea0279

Browse files
author
Ziya SARIKAYA
committed
Upgrade Newtonsoft.Json to 9.0.1
1 parent 87bbdd7 commit 0ea0279

11 files changed

+20
-19
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,5 @@ _UpgradeReport_Files/
102102
Backup*/
103103
UpgradeLog*.XML
104104
*.nupkg
105-
.vs/
105+
.vs/
106+
.idea/

FireSharp.Serialization.JsonNet/FireSharp.Serialization.JsonNet.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@
3333
<WarningLevel>4</WarningLevel>
3434
</PropertyGroup>
3535
<ItemGroup>
36-
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
37-
<SpecificVersion>False</SpecificVersion>
38-
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
36+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
37+
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
3938
</Reference>
4039
<Reference Include="System" />
4140
<Reference Include="System.Core" />
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
32
<packages>
4-
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
3+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
54
<package id="RestSharp" version="104.4.0" targetFramework="net45" />
65
</packages>

FireSharp.Test.Console/FireSharp.Test.Console.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
41+
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
42+
</Reference>
4043
<Reference Include="System" />
4144
<Reference Include="System.Core" />
4245
<Reference Include="System.Net.Http" />
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
32
<packages>
43
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net451" />
54
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net451" />
65
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net451" />
6+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net451" />
77
</packages>

FireSharp.Tests/FireSharp.Tests.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@
6161
<SpecificVersion>False</SpecificVersion>
6262
<HintPath>..\packages\Moq.4.2.1502.0911\lib\net40\Moq.dll</HintPath>
6363
</Reference>
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.8\lib\net45\Newtonsoft.Json.dll</HintPath>
64+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
65+
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
6766
</Reference>
6867
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
6968
<SpecificVersion>False</SpecificVersion>

FireSharp.Tests/packages.config

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
32
<packages>
43
<package id="AutoFixture" version="3.24.3" targetFramework="net45" />
54
<package id="Common.Testing.NUnit" version="1.0.0" targetFramework="net45" />
@@ -9,6 +8,6 @@
98
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net45" />
109
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net45" />
1110
<package id="Moq" version="4.2.1502.0911" targetFramework="net45" />
12-
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
11+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
1312
<package id="NUnit" version="2.6.4" targetFramework="net45" />
1413
</packages>

FireSharp.WebApp/FireSharp.WebApp.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
<HintPath>..\packages\Autofac.Mvc4.3.1.0\lib\net40\Autofac.Integration.Mvc.dll</HintPath>
5151
</Reference>
5252
<Reference Include="Microsoft.CSharp" />
53+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
54+
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
55+
</Reference>
5356
<Reference Include="System" />
5457
<Reference Include="System.Data" />
5558
<Reference Include="System.Drawing" />

FireSharp.WebApp/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
32
<packages>
43
<package id="Autofac" version="3.1.0" targetFramework="net45" />
54
<package id="Autofac.Mvc4" version="3.1.0" targetFramework="net45" />
@@ -8,4 +7,5 @@
87
<package id="Microsoft.AspNet.Razor" version="2.0.20715.0" targetFramework="net45" />
98
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net45" />
109
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
10+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
1111
</packages>

FireSharp/FireSharp.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
<SubType>Designer</SubType>
4343
</None>
4444
<None Include="packages.config" />
45-
<Reference Include="Newtonsoft.Json">
46-
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
45+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
46+
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
4747
</Reference>
4848
<Reference Include="System" />
4949
<Reference Include="System.Core" />

FireSharp/packages.config

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
32
<packages>
43
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="portable-net45+sl50+win+wpa81+wp80" />
5-
<package id="Microsoft.Bcl.Async" version="1.0.168"
6-
targetFramework="portable-net45+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10" />
4+
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="portable-net45+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10" />
75
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="portable-net45+sl50+win+wpa81+wp80" />
86
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="portable-net45+sl50+win+wpa81+wp80" />
9-
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="portable-net45+sl50+win+wpa81+wp80" />
7+
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="portable40-net45+sl5+win8+wp8+wpa81" />
108
</packages>

0 commit comments

Comments
 (0)