Maintains a history of built files and detects whether a new build is necessary.
Пример #1
0
 public void Initialize(string historyPath, bool fullRebuild, BuildLog log)
 {
     Log = log;
     history = new BuildHistory(this, historyPath);
     FullRebuild = fullRebuild;
 }