コード例 #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
ファイル: DXVcsServiceTests.cs プロジェクト: Xarlot/DXVcs2Git
 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
ファイル: DXVcsServiceTests.cs プロジェクト: Xarlot/DXVcs2Git
 static bool IsBranchCreatedTimeStamp(ProjectHistoryInfo x)
 {
     return x.Message != null && x.Message.ToLowerInvariant() == "create";
 }