Cake.Json addin
This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Json.
JSON related cake aliases.
In order to use aliases from this addin, you will need to also reference Newtonsoft.Json as an addin. Here is what including Cake.Json in your script should look like:
#addin package:?Cake.Json
#addin package:?Newtonsoft.Json&version=11.0.2
General
DeserializeJson Alias from Cake.Json addin |
Deserializes the JSON from a string. |
Deserialize Alias from Cake.Json addin |
Deserializes the JSON from a file. |
ParseJson Alias from Cake.Json addin |
Parses the JSON into a JObject. |
ParseJsonFromFile Alias from Cake.Json addin |
Parses the file contents into a JObject. |
SerializeJson Alias from Cake.Json addin |
Serializes an object to a JSON string. |
SerializeJsonPretty Alias from Cake.Json addin |
Serializes an object to a pretty JSON string. |
SerializeJsonToFile Alias from Cake.Json addin |
Serializes an object to a JSON file. |
Serialize Alias from Cake.Json addin |
Serializes an object to a pretty JSON file. |