diff options
author | Chad Tolkien <chad@tolkien.id.au> | 2019-07-09 10:26:12 +1000 |
---|---|---|
committer | Chad Tolkien <chad@tolkien.id.au> | 2019-07-09 10:26:12 +1000 |
commit | 7cdecd629c11acfcb03ef851ede5941b076c83c7 (patch) | |
tree | 1c008a3e073baec6c30fc4627cbcc8ef87d4c638 | |
parent | 0a380b1dcd5b9404d0e8399f740923d23c91900f (diff) | |
download | TinyPNG-7cdecd629c11acfcb03ef851ede5941b076c83c7.zip TinyPNG-7cdecd629c11acfcb03ef851ede5941b076c83c7.tar.gz TinyPNG-7cdecd629c11acfcb03ef851ede5941b076c83c7.tar.bz2 |
Update azure-pipelines.yml for Azure Pipelines
-rw-r--r-- | azure-pipelines.yml | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e6f72ba..e6344f1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,21 +28,19 @@ jobs: inputs: targetPath: "$(build.artifactstagingdirectory)" ArtifactName: "build" -# - job: "BuildLinux" -# displayName: "Building .NET Application" -# pool: -# vmImage: 'ubuntu-latest' -# steps: -# - task: DotNetCoreInstaller@0 -# displayName: "Use .NET Core sdk 2.2.100" -# inputs: -# version: 2.2.100 - -# - script: dotnet publish --configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory) -# displayName: "dotnet publish" + - job: "BuildLinux" + displayName: "Building .NET Application" + pool: + vmImage: 'ubuntu-latest' + steps: + - task: DotNetCoreInstaller@1 + displayName: "Use .NET Core sdk 2.2.100" + inputs: + version: 2.2.100 + - task: DotNetCoreCLI@2 + inputs: + command: build + - task: DotNetCoreCLI@2 + inputs: + command: build -# - task: PublishPipelineArtifact@0 -# displayName: "Publish Artifact" -# inputs: -# targetPath: "$(build.artifactstagingdirectory)" -# ArtifactName: "build" |