Beispiel #1
0
 protected void CleanPublishedOutput()
 {
     using (Logger.BeginScope("CleanPublishedOutput"))
     {
         if (DeploymentParameters.PreservePublishedApplicationForDebugging)
         {
             Logger.LogWarning(
                 "Skipping deleting the locally published folder as property " +
                 $"'{nameof(DeploymentParameters.PreservePublishedApplicationForDebugging)}' is set to 'true'.");
         }
         else
         {
             _publishedApplication?.Dispose();
         }
     }
 }