pipeline file changes

This commit is contained in:
Brett Hewitson 2022-12-29 17:01:35 +10:00
parent 64d2b8fe45
commit 9a97d15e84
3 changed files with 14 additions and 10 deletions

View file

@ -41,7 +41,13 @@ stages:
- template: create-agent-capabilities-variables.yml@self
- template: write-environment-variables.yml@self
- task: PowerShell@2
displayName: Write Environment Variables
condition: contains(variables['system.debug'], 'true')
inputs:
targetType: inline
script: '(gci env:*).GetEnumerator() | Sort-Object Name | Out-String'
pwsh: true
- task: NuGetToolInstaller@1
displayName: Install NuGet 4.4.1

View file

@ -58,7 +58,13 @@ stages:
Write-Host "RepositoryFolder: ${{parameters.RepositoryFolder}}"
pwsh: true
- template: write-environment-variables.yml@self
- task: PowerShell@2
displayName: Write Environment Variables
condition: contains(variables['system.debug'], 'true')
inputs:
targetType: inline
script: '(gci env:*).GetEnumerator() | Sort-Object Name | Out-String'
pwsh: true
- checkout: MasterRepo
persistCredentials: true

View file

@ -1,8 +0,0 @@
steps:
- task: PowerShell@2
displayName: Write Environment Variables
condition: contains(variables['system.debug'], 'true')
inputs:
targetType: inline
script: '(gci env:*).GetEnumerator() | Sort-Object Name | Out-String'
pwsh: true