mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* Apply code style rules to Windows scripts * Fix typo * Fix configure-toolset script * Fix parameters in Msys2 installation script * Improve log readability * Remove broken exit code validation
11 lines
471 B
PowerShell
11 lines
471 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"
|