This commit is contained in:
singhashish-wpf 2023-01-31 15:42:37 +05:30
Родитель fc5540f00d
Коммит 339407e0af
1 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -196,7 +196,16 @@ jobs:
displayName: Set Path Vars
inputs:
targetType: 'inline'
script: $env:path = '$(Build.SourcesDirectory)\.dotnet;' + $env:path
script: $env:path = '$(Build.SourcesDirectory)\\.dotnet\;' + $env:path
workingDirectory: '$(System.ArtifactsDirectory)\testbins'
condition: ne(variables['_Platform'], 'arm64')
continueOnError: true
- task: PowerShell@2
displayName: Echo Path Vars
inputs:
targetType: 'inline'
script: echo $env:path
workingDirectory: '$(System.ArtifactsDirectory)\testbins'
condition: ne(variables['_Platform'], 'arm64')
continueOnError: true