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

11 lines
497 B
PowerShell
Raw Normal View History

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