Skip to content

Commit 9495751

Browse files
authored
Fix ExtractWindowsAppSDKVersion to only look at WindowsAppSDK nupkg (#4629)
* Fix ExtractWindowsAppSDKVersion to only look at WindowsAppSDK nupkg * Fix typo
1 parent 24557c7 commit 9495751

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build/AzurePipelinesTemplates/WindowsAppSDK-BuildVSIX-Steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ steps:
5757
foreach ($file in $files) # Iterate through each package we restored in the directory
5858
{
5959
Write-Host "file:" $file.FullName
60-
$nupkgPaths = Get-ChildItem $file.FullName -Filter "*.nupkg"
60+
$nupkgPaths = Get-ChildItem $file.FullName -Filter "*WindowsAppSDK*.nupkg"
6161
6262
# Extract nupkg to access the nuspec
6363
# The files in this directory does not contain the nuspec by default
@@ -236,4 +236,4 @@ steps:
236236
- task: PublishBuildArtifacts@1
237237
inputs:
238238
PathtoPublish: '$(ob_outputDirectory)'
239-
artifactName: '$(ob_artifactBaseName)'
239+
artifactName: '$(ob_artifactBaseName)'

0 commit comments

Comments
 (0)