From c7a5de6bb859f87ad7e99e67d104e20f57243a6a Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 20 Jul 2023 18:54:51 +0200 Subject: [PATCH] docs(ci): fix .NET AzDo snippet (#24333) Fixes https://github.com/microsoft/playwright-dotnet/issues/2645 Signed-off-by: Max Schmitt --- docs/src/ci.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/ci.md b/docs/src/ci.md index 46e4f9ebb7..86d222d2bb 100644 --- a/docs/src/ci.md +++ b/docs/src/ci.md @@ -562,7 +562,7 @@ steps: displayName: 'Use .NET SDK' - script: dotnet build --configuration Release displayName: 'Build' -- script: pwsh bin/Debug/net6.0/playwright.ps1 install --with-deps +- script: pwsh bin/Release/net6.0/playwright.ps1 install --with-deps displayName: 'Install Playwright browsers' - script: dotnet test --configuration Release displayName: 'Run tests'