mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* add extensions * add exe installation * change Reporting Services name * add switch to function, add validation * change install wdk to function * Fix template * fix scripts name * add quotes * more quotes * one more quotes * get rid of duplicate code * move quotes to function * small improvment to wix installation * add comment to validate extensions script
25 lines
796 B
PowerShell
25 lines
796 B
PowerShell
################################################################################
|
|
## File: Validate-SSDT.ps1
|
|
## Desc: Validate SQL Server Data Tools for Windows
|
|
################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
|
|
$SSDTPackageVersion = Get-VSExtensionVersion -packageName "SSDT"
|
|
|
|
# Adding description of the software to Markdown
|
|
$SoftwareName = "SQL Server Data Tools for VS 2017"
|
|
|
|
$Description = @"
|
|
_Version:_ $SSDTPackageVersion<br/>
|
|
|
|
The following components are installed:
|
|
|
|
* SQL Server Data Tools
|
|
* SQL Server Analysis Services Designer
|
|
* SQL Server Integration Services Designer
|
|
* SQL Server Reporting Services Designers
|
|
"@
|
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|