Skip to content

Commit a870e27

Browse files
committed
fix ignore list
1 parent cb839a1 commit a870e27

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Scripts/post_build.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ function Delete-Unused ($path, $config) {
4040
$target = "$path\Output\$config"
4141
$included = Get-ChildItem $target -Filter "*.dll"
4242
foreach ($i in $included){
43-
if ($i.Name in ["System.Text.Encodings.Web.dll"]) {
43+
$ignored = ["System.Text.Encodings.Web.dll"]
44+
45+
if ($ignored.Contains($i.Name)) {
4446
# ignore some specific dll that seems to make issue
4547
continue
4648
}

0 commit comments

Comments
 (0)