Skip to content

Commit cbfa798

Browse files
committed
bump to 102.7 with json.net 4.0.8, now with less strong naming for WP/SL. hooray :)
1 parent d5d3666 commit cbfa798

33 files changed

+285
-29
lines changed

RestSharp.Silverlight/RestSharp.Silverlight.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
</PropertyGroup>
5050
<ItemGroup>
5151
<Reference Include="mscorlib" />
52-
<Reference Include="Newtonsoft.Json, Version=4.0.7.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
52+
<Reference Include="Newtonsoft.Json, Version=4.0.8.0, Culture=neutral, processorArchitecture=MSIL">
5353
<SpecificVersion>False</SpecificVersion>
54-
<HintPath>..\packages\Newtonsoft.Json.4.0.7\lib\sl4\Newtonsoft.Json.dll</HintPath>
54+
<HintPath>..\packages\Newtonsoft.Json.4.0.8\lib\sl4\Newtonsoft.Json.dll</HintPath>
5555
</Reference>
5656
<Reference Include="System.ServiceModel" />
5757
<Reference Include="System.ServiceModel.Web" />

RestSharp.Silverlight/packages.config

+1-1
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.7" />
3+
<package id="Newtonsoft.Json" version="4.0.8" />
44
</packages>

RestSharp.Tests/RestSharp.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
<DocumentationFile>bin\Release\RestSharp.Tests.xml</DocumentationFile>
5454
</PropertyGroup>
5555
<ItemGroup>
56-
<Reference Include="Newtonsoft.Json, Version=4.0.7.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
56+
<Reference Include="Newtonsoft.Json, Version=4.0.8.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
5757
<SpecificVersion>False</SpecificVersion>
58-
<HintPath>..\packages\Newtonsoft.Json.4.0.7\lib\net40\Newtonsoft.Json.dll</HintPath>
58+
<HintPath>..\packages\Newtonsoft.Json.4.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
5959
</Reference>
6060
<Reference Include="System" />
6161
<Reference Include="System.Core">

RestSharp.Tests/packages.config

+1-1
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.7" />
3+
<package id="Newtonsoft.Json" version="4.0.8" />
44
<package id="xunit" version="1.9.0.1566" />
55
<package id="xunit.extensions" version="1.9.0.1566" />
66
</packages>

RestSharp.WindowsPhone.Mango/RestSharp.WindowsPhone.Mango.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
<DocumentationFile>Bin\Release\RestSharp.WindowsPhone.xml</DocumentationFile>
4444
</PropertyGroup>
4545
<ItemGroup>
46-
<Reference Include="Newtonsoft.Json, Version=4.0.7.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
46+
<Reference Include="Newtonsoft.Json, Version=4.0.8.0, Culture=neutral, processorArchitecture=MSIL">
4747
<SpecificVersion>False</SpecificVersion>
48-
<HintPath>..\packages\Newtonsoft.Json.4.0.7\lib\sl4-windowsphone71\Newtonsoft.Json.dll</HintPath>
48+
<HintPath>..\packages\Newtonsoft.Json.4.0.8\lib\sl4-windowsphone71\Newtonsoft.Json.dll</HintPath>
4949
</Reference>
5050
<Reference Include="System.Windows" />
5151
<Reference Include="system" />
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.7" />
3+
<package id="Newtonsoft.Json" version="4.0.8" />
44
</packages>

RestSharp.WindowsPhone/RestSharp.WindowsPhone.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
</PropertyGroup>
4545
<ItemGroup>
4646
<Reference Include="mscorlib" />
47-
<Reference Include="Newtonsoft.Json, Version=4.0.7.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
47+
<Reference Include="Newtonsoft.Json, Version=4.0.8.0, Culture=neutral, processorArchitecture=MSIL">
4848
<SpecificVersion>False</SpecificVersion>
49-
<HintPath>..\packages\Newtonsoft.Json.4.0.7\lib\sl3-wp\Newtonsoft.Json.dll</HintPath>
49+
<HintPath>..\packages\Newtonsoft.Json.4.0.8\lib\sl3-wp\Newtonsoft.Json.dll</HintPath>
5050
</Reference>
5151
<Reference Include="System.Windows" />
5252
<Reference Include="system" />
+1-1
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.7" />
3+
<package id="Newtonsoft.Json" version="4.0.8" />
44
</packages>

RestSharp.sln

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ EndProject
1212
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestSharp.WindowsPhone", "RestSharp.WindowsPhone\RestSharp.WindowsPhone.csproj", "{F4D48DF6-316E-4963-B5C1-59CA39B431B7}"
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NuGet", "NuGet", "{E709A928-A45C-4622-A35C-CCD8EE44CA80}"
15-
ProjectSection(SolutionItems) = preProject
16-
restsharp.nuspec = restsharp.nuspec
17-
EndProjectSection
1815
EndProject
1916
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestSharp.WindowsPhone.Mango", "RestSharp.WindowsPhone.Mango\RestSharp.WindowsPhone.Mango.csproj", "{71647E33-714F-4975-8368-71B075045272}"
2017
EndProject

RestSharp/RestSharp.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
<DocumentationFile>bin\Release\RestSharp.xml</DocumentationFile>
5656
</PropertyGroup>
5757
<ItemGroup>
58-
<Reference Include="Newtonsoft.Json, Version=4.0.7.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
58+
<Reference Include="Newtonsoft.Json, Version=4.0.8.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
5959
<SpecificVersion>False</SpecificVersion>
60-
<HintPath>..\packages\Newtonsoft.Json.4.0.7\lib\net35\Newtonsoft.Json.dll</HintPath>
60+
<HintPath>..\packages\Newtonsoft.Json.4.0.8\lib\net35\Newtonsoft.Json.dll</HintPath>
6161
</Reference>
6262
<Reference Include="System" />
6363
<Reference Include="System.Core">

RestSharp/SharedAssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
// You can specify all the values or you can default the Build and Revision Numbers
2424
// by using the '*' as shown below:
2525
// [assembly: AssemblyVersion("1.0.*")]
26-
[assembly: AssemblyVersion("102.5.0.0")]
27-
[assembly: AssemblyFileVersion("102.5.0.0")]
26+
[assembly: AssemblyVersion("102.7.0.0")]
27+
[assembly: AssemblyFileVersion("102.7.0.0")]

RestSharp/packages.config

+1-1
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.7" />
3+
<package id="Newtonsoft.Json" version="4.0.8" />
44
</packages>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/Newtonsoft.Json.4.0.7/lib/net20/Newtonsoft.Json.xml renamed to packages/Newtonsoft.Json.4.0.8/lib/net20/Newtonsoft.Json.xml

+44-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

packages/Newtonsoft.Json.4.0.7/lib/net35/Newtonsoft.Json.xml renamed to packages/Newtonsoft.Json.4.0.8/lib/net35/Newtonsoft.Json.xml

+44-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

packages/Newtonsoft.Json.4.0.7/lib/net40/Newtonsoft.Json.xml renamed to packages/Newtonsoft.Json.4.0.8/lib/net40/Newtonsoft.Json.xml

+44-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

0 commit comments

Comments
 (0)