mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
13 lines
538 B
PowerShell
13 lines
538 B
PowerShell
####################################################################################
|
|
## File: Install-DACFx.ps1
|
|
## Desc: Install SQL Server® Data-Tier Application Framework (DACFx) for Windows
|
|
####################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
|
|
$InstallerName = "DacFramework.msi"
|
|
$InstallerUrl = "https://go.microsoft.com/fwlink/?linkid=2134206"
|
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx" |