From b8b36bbfc4dbf6bafa7a8a0495209acd8b3f8ab4 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Fri, 24 Jan 2020 23:11:46 -0800 Subject: [PATCH] Fixed indentation --- build/aro/azure-devops/webapp-build.yml | 52 ++++++++++++------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/build/aro/azure-devops/webapp-build.yml b/build/aro/azure-devops/webapp-build.yml index 704107d2f..99a653409 100644 --- a/build/aro/azure-devops/webapp-build.yml +++ b/build/aro/azure-devops/webapp-build.yml @@ -4,30 +4,30 @@ jobs: - job: Restore, Build, and Publish pool: name: Hosted Ubuntu 1604 -steps: -- task: DotNetCoreCLI@2 - displayName: 'dotnet restore' - inputs: - command: restore - projects: '**/$(ProjectName).csproj' - feedsToUse: config - nugetConfigPath: NuGet.config -- task: DotNetCoreCLI@2 - displayName: 'dotnet build' - inputs: - projects: '**/$(ProjectName).csproj' - arguments: '--configuration Release' - feedsToUse: config - nugetConfigPath: NuGet.config -- task: DotNetCoreCLI@2 - displayName: 'dotnet publish' - inputs: - command: publish - publishWebProjects: false - projects: '**/$(ProjectName).csproj' - arguments: '--configuration Release --output $(Build.ArtifactStagingDirectory)/$(ProjectName) /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.App' - zipAfterPublish: false - modifyOutputPath: false - feedsToUse: config - nugetConfigPath: NuGet.config + steps: + - task: DotNetCoreCLI@2 + displayName: 'dotnet restore' + inputs: + command: restore + projects: '**/$(ProjectName).csproj' + feedsToUse: config + nugetConfigPath: NuGet.config + - task: DotNetCoreCLI@2 + displayName: 'dotnet build' + inputs: + projects: '**/$(ProjectName).csproj' + arguments: '--configuration Release' + feedsToUse: config + nugetConfigPath: NuGet.config + - task: DotNetCoreCLI@2 + displayName: 'dotnet publish' + inputs: + command: publish + publishWebProjects: false + projects: '**/$(ProjectName).csproj' + arguments: '--configuration Release --output $(Build.ArtifactStagingDirectory)/$(ProjectName) /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.App' + zipAfterPublish: false + modifyOutputPath: false + feedsToUse: config + nugetConfigPath: NuGet.config