2019-12-13 09:48:00 -05:00
|
|
|
####################################################################################
|
|
|
|
|
## File: Install-DACFx.ps1
|
2020-10-09 10:49:45 -07:00
|
|
|
## Desc: Install SQL Server® Data-Tier Application Framework (DacFx) for Windows
|
2019-12-13 09:48:00 -05:00
|
|
|
####################################################################################
|
|
|
|
|
|
2020-04-21 11:58:27 +03:00
|
|
|
$InstallerName = "DacFramework.msi"
|
2020-09-25 14:25:08 -07:00
|
|
|
$InstallerUrl = "https://go.microsoft.com/fwlink/?linkid=2143544"
|
2019-12-13 09:48:00 -05:00
|
|
|
|
2020-07-21 09:50:01 +03:00
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|
|
|
|
|
|
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx"
|