Infineon.EAF.Runtime v2.59.0

This commit is contained in:
2025-02-17 18:40:58 -07:00
parent 9769e1e106
commit 534d0ccc5c
27 changed files with 847 additions and 35 deletions

View File

@ -824,13 +824,11 @@ public class ProcessData : IProcessData
continue;
totalStoryPoints += record.WorkItem.StoryPoints.Value;
}
lines.Add(string.Empty);
lines.Add($"## {keyValuePair.Key} => {totalStoryPoints}");
lines.Add(string.Empty);
foreach (Record record in keyValuePair.Value)
{
lines.Add($"- [ ] [{record.WorkItem.Id}]({url}{record.WorkItem.Id}) - {record.WorkItem.Title}");
lines.Add(string.Empty);
}
}
return new(results);
}