public void Execute(Starcounter.HostContext hostContext, StartupLog startupLog)
 {
     // Build a history log of the used configuration parameters
     if (!IsExecuted)
     {
         // Setting the history file will also load it.
         _history.File = new FileInfo(Path.Combine(
             hostContext.OutputDirectory,
             HistoryFile));
     }
 }
 protected override void HasChanged(Starcounter.Templates.TValue property)
 {
     Transaction.Commit();
     base.HasChanged(property);
 }