Exemple #1
0
 /// <summary>
 /// Does any housekeeping after Bind.
 /// </summary>
 /// <param name="tidy">Whether or not any actual tidying should be done.</param>
 public void Cleanup(bool tidy)
 {
     if (tidy)
     {
         if (!this.DeleteTempFiles())
         {
             this.core.OnMessage(WixWarnings.FailedToDeleteTempDir(this.TempFilesLocation));
         }
     }
     else
     {
         this.core.OnMessage(WixVerboses.BinderTempDirLocatedAt(this.TempFilesLocation));
     }
 }