We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d2d56 commit 5a4d2ccCopy full SHA for 5a4d2cc
eng/verify-nupkgs.ps1
@@ -65,7 +65,11 @@ function Verify-Nuget-Packages {
65
66
Write-Host "Found $(@($nugetPackages).Count) nuget packages:`n $($nugetPackages.FullName -join "`n ")"
67
68
- $nugetPackages += Get-Item "$PSScriptRoot/../artifacts/VSSetup/$configuration/Insertion/Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI.vsix"
+ # In source build we don't build this.
69
+ $vsix = Get-Item "$PSScriptRoot/../artifacts/VSSetup/$configuration/Insertion/Microsoft.VisualStudio.TestTools.TestPlatform.V2.CLI.vsix" -ErrorAction Ignore
70
+ if ($vsix) {
71
+ $nugetPackages += $vsix
72
+ }
73
74
Write-Host "Unzipping NuGet packages to '$tmpDirectory'."
75
$unzipNugetPackageDirs = @()
0 commit comments