Skip to content

Commit

Permalink
minor message change
Browse files Browse the repository at this point in the history
  • Loading branch information
stavroskasidis committed Feb 8, 2022
1 parent 9f10c62 commit 5e2783b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BlazorWasmAntivirusProtection.Tasks/CleanOldDlls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5e2783b

Please sign in to comment.