Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .azure/pipelines/pkg.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,8 +9,6 @@ trigger:
paths:
exclude:
- README.md
include:
- Directory.Build.props

pr: none

Expand DownExpand Up@@ -38,20 +36,20 @@ steps:
packageType: 'sdk'
version: '3.1.100'
- task: DotNetCoreCLI@2
displayName: 'Publish the dotnet api'
displayName: 'Publish the ASP.NET API'
inputs:
command: 'publish'
publishWebProjects: false
projects: 'dotnet/src/**/*Api.csproj'
arguments: '-c Release -o $(Build.ArtifactStagingDirectory)'
arguments: '-c $(BuildConfiguration) -o $(Build.ArtifactStagingDirectory)/aspnetapi'
modifyOutputPath: false
- task: DotNetCoreCLI@2
displayName: 'Publish the dotnet app'
displayName: 'Publish the ASP.NET Angular App'
inputs:
command: 'publish'
publishWebProjects: false
projects: 'dotnet/src/**/*App.csproj'
arguments: '-c Release -o $(Build.ArtifactStagingDirectory)'
projects: 'dotnet/src/**/AngularWebApp.csproj'
arguments: '-c $(BuildConfiguration) -o $(Build.ArtifactStagingDirectory)/aspnetangular'
modifyOutputPath: false
- task: PublishBuildArtifacts@1
displayName: 'Save the artifacts'
Expand Down