minor fixes

This commit is contained in:
2024-09-26 10:18:29 +02:00
parent a420e7bf74
commit 6f8ac996fd
4 changed files with 36 additions and 21 deletions

View File

@@ -22,6 +22,10 @@ public class InstallInfos : IActionSetInfos
public override string ToString()
{
return JsonConvert.SerializeObject(this);
return JsonConvert.SerializeObject(this, new JsonSerializerSettings
{
Formatting = Formatting.Indented,
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
});
}
}