Skip to content

Commit

Permalink
[dotnet] Use correct Newtonsoft.Json 11.0.1 as minimum required (#12776)
Browse files Browse the repository at this point in the history
Use correct minimum newtonsoft11.0.1
  • Loading branch information
nvborisenko committed Sep 19, 2023
1 parent 9d20124 commit fbfaab5
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/WebDriver.StrongNamed.nuspec
Expand Up @@ -28,7 +28,7 @@
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.IdentityModel.Tokens" version="6.19.0" exclude="Build,Analyzers" />
<dependency id="Newtonsoft.Json" version="5.0.1" exclude="Build,Analyzers" />
<dependency id="Newtonsoft.Json" version="11.0.1" exclude="Build,Analyzers" />
<dependency id="System.Drawing.Common" version="7.0.0" exclude="Build,Analyzers" />
</group>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/WebDriver.csproj
Expand Up @@ -61,7 +61,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.19.0" />
<PackageReference Include="Newtonsoft.Json" Version="5.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/WebDriver.nuspec
Expand Up @@ -28,7 +28,7 @@
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.IdentityModel.Tokens" version="6.19.0" exclude="Build,Analyzers" />
<dependency id="Newtonsoft.Json" version="5.0.1" exclude="Build,Analyzers" />
<dependency id="Newtonsoft.Json" version="11.0.1" exclude="Build,Analyzers" />
<dependency id="System.Drawing.Common" version="7.0.0" exclude="Build,Analyzers" />
</group>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions dotnet/workspace.bzl
Expand Up @@ -31,8 +31,8 @@ def selenium_register_dotnet():

import_nuget_package(
name = "json.net",
file = "third_party/dotnet/nuget/packages/newtonsoft.json.13.0.1.nupkg",
sha256 = "2b6b52556e27e1b7913f33eedeb95568110c746bd64afff74357f1683878323a",
file = "third_party/dotnet/nuget/packages/newtonsoft.json.11.0.1.nupkg",
sha256 = "95b47bae94bf117809f13a90b29b8822a02c8a8aeb65bd6838ae07170f90c8fc",
)

import_nuget_package(
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit fbfaab5

Please sign in to comment.