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 d770e6d commit 8e26a4cCopy full SHA for 8e26a4c
Scripts/post_build.ps1
@@ -40,12 +40,6 @@ function Delete-Unused ($path, $config) {
40
$target = "$path\Output\$config"
41
$included = Get-ChildItem $target -Filter "*.dll"
42
foreach ($i in $included){
43
- $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
- }
49
foreach ($plugin in Get-ChildItem $target\Plugins){
50
$deleteList = Get-ChildItem $target\Plugins -Filter $i.Name | Where { $_.VersionInfo.FileVersion -eq $i.VersionInfo.FileVersion -And $_.Name -eq $i.Name }
51
$deleteList | ForEach-Object{ Write-Host Deleting duplicated $_.Name with version $_.VersionInfo.FileVersion at location $_.Directory.FullName }
0 commit comments