mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* [Windows] Refactor base Installer helper functions * Fix helper name * Fix name gen logic and improve error handling * Fix hash checking logic * Fix Install-VsixExtension invocation * Fix variable name in Install-OpenSSL.ps1 * Fix type for git downloadUrl
11 lines
467 B
PowerShell
11 lines
467 B
PowerShell
####################################################################################
|
|
## File: Install-DACFx.ps1
|
|
## Desc: Install SQL Server® Data-Tier Application Framework (DacFx) for Windows
|
|
####################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url 'https://aka.ms/dacfx-msi' `
|
|
-ExpectedSignature '72105B6D5F370B62FD5C82F1512F7AD7DEE5F2C0'
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx"
|