From 7a9214c1c1695f22a27a4bbf8b14300b4473ccd1 Mon Sep 17 00:00:00 2001 From: Colin Dembovsky Date: Thu, 15 Sep 2016 11:50:20 -0700 Subject: [PATCH] Checking sourcedir fix --- Tasks/DacPacReport/DacPacReport.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Tasks/DacPacReport/DacPacReport.ps1 b/Tasks/DacPacReport/DacPacReport.ps1 index a83d654..08089ae 100644 --- a/Tasks/DacPacReport/DacPacReport.ps1 +++ b/Tasks/DacPacReport/DacPacReport.ps1 @@ -105,6 +105,7 @@ function Download-BuildDrop { Remove-Item -Path $tPath -Recurse -Force } mkdir $tPath + Add-Type -AssemblyName "System.IO.Compression.FileSystem" [System.IO.Compression.ZipFile]::ExtractToDirectory($zipPath, $tPath) }