From 9317e45dc67446d1cfa836eca8e761802ca4712b Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Mon, 22 Mar 2021 11:20:23 +0100 Subject: [PATCH] Move dotnet run --- build/azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index bc068a4e4d..069f8e99fc 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -150,12 +150,6 @@ stages: gulpFile: src\Umbraco.Web.UI.Client\gulpfile.js targets: build workingDirectory: src\Umbraco.Web.UI.Client - - task: PowerShell@1 - displayName: dotnet run (Netcore) - inputs: - scriptType: inlineScript - inlineScript: > - Start-Process -FilePath "dotnet" -ArgumentList "run", "-p", "src\Umbraco.Web.UI.Netcore\Umbraco.Web.UI.Netcore.csproj" - job: Windows_Install_Cypress displayName: Windows Install Cypress pool: @@ -181,6 +175,12 @@ stages: pool: vmImage: windows-latest steps: + - task: PowerShell@1 + displayName: dotnet run (Netcore) + inputs: + scriptType: inlineScript + inlineScript: > + Start-Process -FilePath "dotnet" -ArgumentList "run", "--no-build", "-p", "src\Umbraco.Web.UI.Netcore\Umbraco.Web.UI.Netcore.csproj" - task: Npm@1 displayName: npm run test (AcceptanceTest) inputs: