コード例 #1
0
ファイル: WorkFlow.cs プロジェクト: posaunehm/White
 public WorkFlow(string name, string archiveLocation)
 {
     Log("Starting flow " + name);
     directory = CreateNewDirectory(name, archiveLocation);
     graph     = new GraphWriter(string.Format(@"{0}\graph.dot", directory));
     flow      = new FlowWriter(string.Format(@"{0}\flow.dot", directory));
 }
コード例 #2
0
ファイル: WorkFlow.cs プロジェクト: tmandersson/FastGTD
 public WorkFlow(string name, string archiveLocation)
 {
     Log("Starting flow " + name);
     directory = CreateNewDirectory(name, archiveLocation);
     graph = new GraphWriter(string.Format(@"{0}\graph.dot", directory));
     flow = new FlowWriter(string.Format(@"{0}\flow.dot", directory));
 }