Skip to content

Commit

Permalink
Widen Newtonsoft.Json supported version window
Browse files Browse the repository at this point in the history
Support and version of Newtonsoft.JSON down to 9.0.1

Support down to 9.0.1 because that is the minimum for dotnetcore
support. Set the upper limit 12.0.1.

Also upgraded liblog so we can have less building noise. The internal
classes were not documented on the previous version which generated
a ton of warnings at build time.
  • Loading branch information
Cory Todd committed Dec 3, 2018
1 parent 04df837 commit 7898213
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions PTIReliance.sln
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "About", "About", "{BC05BD06
PTIRelianceLib\build\netstandard2.0\PTIRelianceLib.targets = PTIRelianceLib\build\netstandard2.0\PTIRelianceLib.targets
README.md = README.md
third-party-license-readme.md = third-party-license-readme.md
PTIRelianceLib\PTIRelianceLib.csproj = PTIRelianceLib\PTIRelianceLib.csproj
EndProjectSection
EndProject
Global
Expand Down
6 changes: 3 additions & 3 deletions PTIRelianceLib/PTIRelianceLib.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<SemVer>1.1.2.0</SemVer>
<SemVer>1.2.0.0</SemVer>
<Suffix></Suffix>
</PropertyGroup>

Expand Down Expand Up @@ -43,8 +43,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="LibLog" Version="5.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,12.12.0.1)" />
<PackageReference Include="LibLog" Version="5.0.3" />
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
</ItemGroup>

Expand Down

0 comments on commit 7898213

Please sign in to comment.