Skip to content

Commit

Permalink
fix wpfgfx_cor3.dll not getting deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
Aytackydln committed Mar 23, 2024
1 parent d8c05b9 commit 580d26f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Project-Aurora/Project-Aurora/Modules/UpdateCleanup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,12 @@ private void Net8V2Migration()
"YeeLightAPI.dll",
"mscordaccore_amd64_amd64_6.0.2623.60508.dll",
"mscordaccore_amd64_amd64_6.0.2724.6912.dll",
"wpfgfx_cor3.dll",
];

foreach (var file in files)
foreach (var file in files.Where(File.Exists))
{
if (File.Exists(file))
{
File.Delete(file);
}
File.Delete(file);
}
}
}

0 comments on commit 580d26f

Please sign in to comment.