We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb839a1 commit a870e27Copy full SHA for a870e27
Scripts/post_build.ps1
@@ -40,7 +40,9 @@ function Delete-Unused ($path, $config) {
40
$target = "$path\Output\$config"
41
$included = Get-ChildItem $target -Filter "*.dll"
42
foreach ($i in $included){
43
- if ($i.Name in ["System.Text.Encodings.Web.dll"]) {
+ $ignored = ["System.Text.Encodings.Web.dll"]
44
+
45
+ if ($ignored.Contains($i.Name)) {
46
# ignore some specific dll that seems to make issue
47
continue
48
}
0 commit comments