remove all destructors

This commit is contained in:
Paddy Xu
2018-01-24 19:11:16 +02:00
parent 4b9b6c7233
commit 76dd2feb30
15 changed files with 4 additions and 70 deletions

View File

@@ -85,10 +85,14 @@ namespace QuickLook.Helpers
var notes = string.Empty;
var count = 0;
foreach (var item in json)
{
notes += $"# {item["name"]}\r\n\r\n";
notes += item["body"] + "\r\n\r\n";
if (count++ > 10)
break;
}
var changeLogPath = Path.GetTempFileName() + ".md";