コード例 #1
0
 private ObjectInfo PipsInfo(PipsScope _)
 {
     return(new ObjectInfoBuilder()
            .Prop("ByType", PipsByType)
            .Prop("ByStatus", PipsByStatus)
            .Prop("ByExecutionStart", () => PipsOrderedBy(exePerf => exePerf.ExecutionStart))
            .Prop("ByExecutionStop", () => PipsOrderedBy(exePerf => exePerf.ExecutionStop))
            .Build());
 }
コード例 #2
0
ファイル: XlgDebuggerState.cs プロジェクト: smera/BuildXL
 private ObjectInfo PipsInfo(PipsScope _)
 {
     return(new ObjectInfo(new[]
     {
         new Property("ByType", PipsByType),
         new Property("ByStatus", PipsByStatus),
         new Property("ByExecutionStart", () => PipsOrderedBy(exePerf => exePerf.ExecutionStart)),
         new Property("ByExecutionStop", () => PipsOrderedBy(exePerf => exePerf.ExecutionStop))
     }));
 }