Fixed indentation

This commit is contained in:
Tim McCarthy 2020-01-24 23:11:46 -08:00
parent 7624c537fd
commit b8b36bbfc4

View File

@ -4,22 +4,22 @@ jobs:
- job: Restore, Build, and Publish - job: Restore, Build, and Publish
pool: pool:
name: Hosted Ubuntu 1604 name: Hosted Ubuntu 1604
steps: steps:
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'dotnet restore' displayName: 'dotnet restore'
inputs: inputs:
command: restore command: restore
projects: '**/$(ProjectName).csproj' projects: '**/$(ProjectName).csproj'
feedsToUse: config feedsToUse: config
nugetConfigPath: NuGet.config nugetConfigPath: NuGet.config
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'dotnet build' displayName: 'dotnet build'
inputs: inputs:
projects: '**/$(ProjectName).csproj' projects: '**/$(ProjectName).csproj'
arguments: '--configuration Release' arguments: '--configuration Release'
feedsToUse: config feedsToUse: config
nugetConfigPath: NuGet.config nugetConfigPath: NuGet.config
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'dotnet publish' displayName: 'dotnet publish'
inputs: inputs:
command: publish command: publish