Bumped Newtonson.Json version

Never versions of the dotnet-sdk have issues with older Newtonsoft versions. 12.0.1 seems to satisfy the widest variety of sdk versions.
This commit is contained in:
Jeff Alyanak 2019-05-29 14:05:08 -04:00
parent 692f2fd1c5
commit 8e6429d533
No known key found for this signature in database
GPG Key ID: DD0CB89C105B276F
2 changed files with 3 additions and 3 deletions

View File

@ -35,10 +35,10 @@ First, we need to add the correct version of Newtonsoft.Json to the license gene
```bash
cd BitBetter/src/licenseGen/
dotnet add package Newtonsoft.Json --version 11.0.0
dotnet add package Newtonsoft.Json --version 12.0.1
cd ../bitBetter
dotnet add package Newtonsoft.Json --version 11.0.0
dotnet add package Newtonsoft.Json --version 12.0.1
```
Next, we need to generate the self-signed certificate we will use to sign any licenses we generate.

View File

@ -7,7 +7,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>