This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
using Newtonsoft.Json; | |
public static string JsonPrettify(string json) | |
{ | |
using (var stringReader = new StringReader(json)) | |
using (var stringWriter = new StringWriter()) | |
{ | |
var jsonReader = new JsonTextReader(stringReader); | |
var jsonWriter = new JsonTextWriter(stringWriter) { Formatting = Formatting.Indented }; | |
jsonWriter.WriteToken(jsonReader); |
The list of supported tools | |
$ git mergetool --tool-help | |
Setting kdiff3 as mergetool tool | |
$ git config --global merge.tool kdiff3 | |
In case you want to config diff.tool | |
$ git config --global diff.tool kdiff3 | |
If kdiff3 is not in your PATH environment also do |
Reference(s):
http://www.sourcegear.com/diffmerge/downloads.php - get the installer version, NOT the dmg version