@@ -39,6 +39,7 @@ Deserialization:
3939
4040- [ ] Parser support for single-line and multi-line comments
4141- [ ] Support for date formats
42+ - [ ] Support more dotnet version
4243- [X] Allow key names without quotes
4344- [X] Support for single quotes in strings
4445- [X] Allow trailing commas in arrays and objects
@@ -65,46 +66,46 @@ Serialization:
6566
6667## Using DanKeJson from an application
6768
68- ** [ Download package] ( https://www.nuget.org/api/v2/package/DanKeJson/1.3.0 ) **
69+ ** [ Download package] ( https://www.nuget.org/api/v2/package/DanKeJson/1.3.1 ) **
6970
7071### Package manager
7172
7273``` shell
73- NuGet\I nstall-Package DanKeJson -Version 1.3.0
74+ NuGet\I nstall-Package DanKeJson -Version 1.3.1
7475```
7576
7677### .NET CLI
7778
7879``` shell
79- dotnet add package DanKeJson --version 1.3.0
80+ dotnet add package DanKeJson --version 1.3.1
8081```
8182
8283### PackageReference
8384
8485``` xaml
85- <PackageReference Include =" DanKeJson" Version =" 1.3.0 " />
86+ <PackageReference Include =" DanKeJson" Version =" 1.3.1 " />
8687```
8788
8889### Paket CLI
8990
9091``` shell
91- paket add DanKeJson --version 1.3.0
92+ paket add DanKeJson --version 1.3.1
9293```
9394
9495### Script & Interactive
9596
9697``` c#
97- #r "nuget: DanKeJson, 1.3.0 "
98+ #r "nuget: DanKeJson, 1.3.1 "
9899```
99100
100101### Cake
101102
102103``` C#
103104// Install DanKeJson as a Cake Addin
104- #addin nuget:?package=DanKeJson&version=1.3.0
105+ #addin nuget:?package=DanKeJson&version=1.3.1
105106
106107// Install DanKeJson as a Cake Tool
107- #tool nuget:?package=DanKeJson&version=1.3.0
108+ #tool nuget:?package=DanKeJson&version=1.3.1
108109```
109110
110111Alternatively, just copy the whole tree of files under ` ./publish/DanKeJson ` to your own project's source tree and integrate it with your development environment.
0 commit comments