Skip to content

Commit

Permalink
Remove unnecessary build tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetseckin committed Nov 15, 2019
1 parent 1a4e581 commit 856e3db
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions pipelines/linux-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ variables:
outputDirectory: $(Build.ArtefactStagingDirectory)/$(runtimeIdentifier)/

steps:
- script: dotnet build $(solutionFile) -c $(buildConfiguration)
displayName: 'Build solution'
- script: dotnet publish $(projectDirectory) -c $(buildConfiguration) -r $(runtimeIdentifier) -o $(outputDirectory) --self-contained true
displayName: 'Publish self-contained executable for $(runtimeIdentifier)'
- task: PublishBuildArtifacts@1
Expand Down
2 changes: 0 additions & 2 deletions pipelines/osx-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ variables:
outputDirectory: $(Build.ArtefactStagingDirectory)/$(runtimeIdentifier)/

steps:
- script: dotnet build $(solutionFile) -c $(buildConfiguration)
displayName: 'Build solution'
- script: dotnet publish $(projectDirectory) -c $(buildConfiguration) -r $(runtimeIdentifier) -o $(outputDirectory) --self-contained true
displayName: 'Publish self-contained executable for $(runtimeIdentifier)'
- task: PublishBuildArtifacts@1
Expand Down
2 changes: 0 additions & 2 deletions pipelines/win10-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ variables:
outputDirectory: $(Build.ArtefactStagingDirectory)/$(runtimeIdentifier)/

steps:
- script: dotnet build $(solutionFile) -c $(buildConfiguration)
displayName: 'Build solution'
- script: dotnet publish $(projectDirectory) -c $(buildConfiguration) -r $(runtimeIdentifier) -o $(outputDirectory) --self-contained true
displayName: 'Publish as self-contained executable for $(runtimeIdentifier)'
- task: PublishBuildArtifacts@1
Expand Down

0 comments on commit 856e3db

Please sign in to comment.