Skip to content

Commit

Permalink
Include fields in json to support value tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaZupan committed Sep 5, 2024
1 parent b2b6760 commit cb1f7d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Runner/Jobs/RegexDiffJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ internal sealed class RegexDiffJob : JobBase
{
ReadCommentHandling = JsonCommentHandling.Skip,
WriteIndented = true,
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
IncludeFields = true
};

public RegexDiffJob(HttpClient client, Dictionary<string, string> metadata) : base(client, metadata) { }
Expand Down

0 comments on commit cb1f7d5

Please sign in to comment.