Skip to content

Commit

Permalink
Update script
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingWonders committed Oct 31, 2024
1 parent fa95b57 commit 2e8722b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CheckMissingDLLs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ if ($ghAction -ne "yes")
$TargetDir = "$((Get-Location).Path)"
}

if (-not (Test-Path ".\bin\Debug"))
{
New-Item "$($SolutionDir)bin\Debug" -ItemType Directory -Force
}

if (-not (Test-Path ".\bin\Debug\System.IO.dll" -PathType Leaf)) {
Copy-Item "$($SolutionDir)\packages\System.IO.4.3.0\lib\net462\System.IO.dll" "$($TargetDir)\System.IO.dll"
}
Expand Down

0 comments on commit 2e8722b

Please sign in to comment.