diff --git a/.ado/jobs/playground.yml b/.ado/jobs/playground.yml index 1f25042847..f1d214cfaf 100644 --- a/.ado/jobs/playground.yml +++ b/.ado/jobs/playground.yml @@ -160,12 +160,9 @@ jobs: New-Item -Path '$(Build.StagingDirectory)\DebugTestCrashDumps' -ItemType Directory displayName: Set CrashDumpRootPath - - task: PowerShell@2 + - powershell: | + & $(Build.SourcesDirectory)\.ado\scripts\RunProcDump.ps1 -ProcDumpArgs @("-mm", "-i", "$(CrashDumpRootPath)") -ProcDumpInstallPath "$(ProcDumpPath)" -Verbose displayName: Setup ProcDump as AeDebug - inputs: - targetType: filePath # filePath | inline - filePath: $(Build.SourcesDirectory)\.ado\scripts\RunProcDump.ps1 - arguments: "-ProcDumpArgs @('-mm', '-i', '$(CrashDumpRootPath)') -ProcDumpInstallPath '$(ProcDumpPath)' -Verbose" # This step loose-file-deploys the UWP Playground app and uses it as an RNW host for a series # of debug feature tests. In the future, these tests should be performed against a host app diff --git a/.ado/templates/prepare-build-env.yml b/.ado/templates/prepare-build-env.yml index b7df09ff82..fd30686773 100644 --- a/.ado/templates/prepare-build-env.yml +++ b/.ado/templates/prepare-build-env.yml @@ -55,9 +55,7 @@ steps: Write-Host "##vso[task.setvariable variable=ProcDumpPath]$(Build.StagingDirectory)\Procdump" displayName: Set ProcDumpPath - - task: PowerShell@2 + - powershell: | + & $(Build.SourcesDirectory)\.ado\scripts\RunProcDump.ps1 -ProcDumpArgs @("-mm", "-i", "$(CrashDumpRootPath)") -ProcDumpInstallPath "$(ProcDumpPath)" -Verbose displayName: Setup ProcDump as AeDebug - inputs: - targetType: filePath # filePath | inline - filePath: $(Build.SourcesDirectory)\.ado\scripts\RunProcDump.ps1 - arguments: "-ProcDumpArgs @('-mm', '-i', '$(CrashDumpRootPath)') -ProcDumpInstallPath '$(ProcDumpPath)' -Verbose" + \ No newline at end of file