Vsix Tests have been created. Old files have been removed

This commit is contained in:
Andrey Mishechkin (GITHUB INC)
2020-09-11 12:42:29 +04:00
parent 40333f6adf
commit feaef58222
7 changed files with 23 additions and 56 deletions

View File

@@ -18,4 +18,6 @@ else {
$requiredVsixs | ForEach-Object {
Install-VsixExtension -url $_.url -name $_.name -VsVersion $VsVersion
}
}
Invoke-PesterTests -TestFile "Vsix"

View File

@@ -1,11 +0,0 @@
################################################################################
## File: Install-InstallerProjects.ps1
## Desc: Install the InstallerProjects Visual Studio Extension
################################################################################
Import-Module -Name ImageHelpers -Force
$InstallerProjectsUrl = 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/VisualStudioClient/vsextensions/MicrosoftVisualStudio2017InstallerProjects/latest/vspackage'
Install-VsixExtension -Url $InstallerProjectsUrl -name "InstallerProjects.vsix" -VSversion "2019"
Invoke-PesterTests -TestFile "InstallerProjects"

View File

@@ -1,12 +0,0 @@
###################################################################################
## File: Install-SSDTExtensions.ps1
## Desc: Install the extensions previously known as SSDT package
###################################################################################
Import-Module -Name ImageHelpers -Force
Install-VsixExtension -Url 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ProBITools/vsextensions/MicrosoftAnalysisServicesModelingProjects/2.9.5/vspackage' -Name 'Microsoft.DataTools.AnalysisServices.vsix' -VSversion "2019"
Install-VsixExtension -Url 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/SSIS/vsextensions/SqlServerIntegrationServicesProjects/3.4/vspackage' -Name 'Microsoft.DataTools.IntegrationServices.exe' -VSversion "2019"
Install-VsixExtension -Url 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ProBITools/vsextensions/MicrosoftReportProjectsforVisualStudio/2.6.3/vspackage' -Name 'Microsoft.DataTools.ReportingServices.vsix' -VSversion "2019"
Invoke-PesterTests -TestFile "SSDTExtensions"