diff --git a/src/BlazorWasmAntivirusProtection.Tasks/CleanOldDlls.cs b/src/BlazorWasmAntivirusProtection.Tasks/CleanOldDlls.cs index ebe58c5..56fff3b 100644 --- a/src/BlazorWasmAntivirusProtection.Tasks/CleanOldDlls.cs +++ b/src/BlazorWasmAntivirusProtection.Tasks/CleanOldDlls.cs @@ -22,7 +22,7 @@ public override bool Execute() var existingDll = Directory.GetFiles(IntermediateLinkDir, "*.dll").FirstOrDefault(); if (File.Exists(linkSemaphore) && existingDll != null && IsDllHeaderBz(existingDll)) { - Log.LogMessage(MessageImportance.High, $"BlazorWasmAntivirusProtection: Cleaning old .dll files"); + Log.LogMessage(MessageImportance.High, $"BlazorWasmAntivirusProtection: Cleaning old .dll files in \"{IntermediateLinkDir}\""); //We delete the Link.semaphore file to force a regeneration of objs in the IntermediateLinkDir //This is to remove remnants of a previous publish File.Delete(linkSemaphore);