mirror of
https://github.com/actions/runner-images.git
synced 2025-12-24 10:28:00 +08:00
[Windows] Move Android and VS helpers to dedicated files (#8903)
This commit is contained in:
committed by
GitHub
parent
45a5b970b8
commit
eb0e4ff100
@@ -1,13 +1,13 @@
|
||||
Describe "Vsix" {
|
||||
$toolset = Get-ToolsetContent
|
||||
$requiredVsixs = $toolset.visualStudio.vsix
|
||||
$requiredVsixPackages = $toolset.visualStudio.vsix
|
||||
|
||||
$allPackages = (Get-VisualStudioInstance).Packages
|
||||
$testCases = $requiredVsixs | ForEach-Object {
|
||||
$vsix = Get-VsixExtenstionFromMarketplace -ExtensionMarketPlaceName $_
|
||||
$testCases = $requiredVsixPackages | ForEach-Object {
|
||||
$vsixPackage = Get-VsixInfoFromMarketplace $_
|
||||
@{
|
||||
VsixName = $vsix.ExtensionName
|
||||
VsixId = $vsix.VsixId
|
||||
VsixName = $vsixPackage.ExtensionName
|
||||
VsixId = $vsixPackage.VsixId
|
||||
AllPackages = $allPackages
|
||||
}
|
||||
}
|
||||
@@ -17,4 +17,4 @@ Describe "Vsix" {
|
||||
$objVsix | Should -Not -BeNullOrEmpty
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user