Skip to content

Commit b16abfb

Browse files
committed
Remove more duplicated dll
1 parent 0a34143 commit b16abfb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Scripts/post_build.ps1

+2-4
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ function Copy-Resources ($path, $config) {
4343

4444
function Delete-Unused ($path, $config) {
4545
$target = "$path\Output\$config"
46-
$included = @(
47-
"Wox.Plugin.pdb", "Wox.Plugin.dll", "Wox.Core.*", "Wox.Infrastructure.*",
48-
"ICSharpCode.*", "JetBrains.*", "Pinyin4Net.*", "NLog.*"
49-
)
46+
$included = Get-ChildItem $target -Filter "*.dll"
5047
foreach ($i in $included){
5148
Remove-Item -Path $target\Plugins -Include $i -Recurse
49+
Write-Host "Deleting duplicated $i"
5250
}
5351
Remove-Item -Path $target -Include "*.xml" -Recurse
5452
}

0 commit comments

Comments
 (0)