Files
runner-images/images/win/scripts/Installers/Install-DACFx.ps1

11 lines
497 B
PowerShell

####################################################################################
## File: Install-DACFx.ps1
## Desc: Install SQL Server® Data-Tier Application Framework (DACFx) for Windows
####################################################################################
$InstallerName = "DacFramework.msi"
$InstallerUrl = "https://go.microsoft.com/fwlink/?linkid=2143544"
Install-Binary -Url $InstallerUrl -Name $InstallerName
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx"