Пример #1
0
 string FormatProjectHistoryItem(ProjectHistoryInfo historyItem)
 {
     return($"{historyItem.ActionDate},{historyItem.Comment},{historyItem.Label},{historyItem.Message},{historyItem.Name},{historyItem.Type},{historyItem.User},{historyItem.Version}");
 }
Пример #2
0
 string FormatProjectHistoryItem(ProjectHistoryInfo historyItem)
 {
     return $"{historyItem.ActionDate},{historyItem.Comment},{historyItem.Label},{historyItem.Message},{historyItem.Name},{historyItem.Type},{historyItem.User},{historyItem.Version}";
 }
Пример #3
0
 static bool IsBranchCreatedTimeStamp(ProjectHistoryInfo x)
 {
     return(x.Message != null && x.Message.ToLowerInvariant() == "create");
 }
Пример #4
0
 static bool IsBranchCreatedTimeStamp(ProjectHistoryInfo x)
 {
     return x.Message != null && x.Message.ToLowerInvariant() == "create";
 }