Skip to content

Commit b70963b

Browse files
Bump Newtonsoft.Json from 6.0.3 to 13.0.1
--- updated-dependencies: - dependency-name: Newtonsoft.Json dependency-version: 13.0.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 48839fb commit b70963b

3 files changed

Lines changed: 14 additions & 6 deletions

File tree

‎JsonRpcTest/TestServer.csproj‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
</PropertyGroup>
5050
<ItemGroup>
5151
<Reference Include="Microsoft.CSharp" />
52-
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
53-
<SpecificVersion>False</SpecificVersion>
54-
<HintPath>..\packages\Newtonsoft.Json.6.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
52+
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
53+
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
54+
<Private>True</Private>
5555
</Reference>
5656
<Reference Include="System.Web.DynamicData" />
5757
<Reference Include="System.Web.Entity" />

‎JsonRpcTest/Web.config‎

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,19 @@
44
<!--<httpHandlers>
55
<add type="AustinHarris.JsonRpc.Handlers.AspNet.JsonRpcHandler" verb="*" path="*.rpc"/>
66
</httpHandlers>-->
7-
<compilation debug="true"/>
7+
<compilation debug="true" />
88
</system.web>
99
<system.webServer>
1010
<handlers>
11-
<add name="jsonrpc" type="AustinHarris.JsonRpc.Handlers.AspNet.JsonRpcHandler" verb="*" path="*.rpc"/>
11+
<add name="jsonrpc" type="AustinHarris.JsonRpc.Handlers.AspNet.JsonRpcHandler" verb="*" path="*.rpc" />
1212
</handlers>
1313
</system.webServer>
14+
<runtime>
15+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
16+
<dependentAssembly>
17+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
18+
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
19+
</dependentAssembly>
20+
</assemblyBinding>
21+
</runtime>
1422
</configuration>

‎JsonRpcTest/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.3" targetFramework="net40" />
3+
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net40" />
44
</packages>

0 commit comments

Comments
 (0)