mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
11 lines
474 B
PowerShell
11 lines
474 B
PowerShell
####################################################################################
|
|
## File: Install-DACFx.ps1
|
|
## Desc: Install SQL Server® Data-Tier Application Framework (DacFx) for Windows
|
|
####################################################################################
|
|
|
|
$InstallerName = "DacFramework.msi"
|
|
$InstallerUrl = "https://aka.ms/dacfx-msi"
|
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx" |