From 2abdc8178f2b5d40154b3acc8e60c9260ac8b458 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Mon, 22 Mar 2021 09:26:40 +0100 Subject: [PATCH] Try to run dotnet run in process --- build/azure-pipelines.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index cfa29dfd48..13ba6b377f 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -132,6 +132,19 @@ stages: gulpFile: src\Umbraco.Web.UI.Client\gulpfile.js targets: build workingDirectory: src\Umbraco.Web.UI.Client + - task: PowerShell@1 + displayName: dotnet run + inputs: + scriptType: inlineScript + inlineScript: > + cd src\Umbraco.Web.UI.Netcore + Start-Process -FilePath "dotnet" -ArgumentList "run" + - task: PowerShell@1 + displayName: whatever + inputs: + scriptType: inlineScript + inlineScript: > + Write-Host "Hello World" - stage: Artifacts dependsOn: [] jobs: