Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmelendez committed Dec 5, 2024
1 parent 1d733fd commit 4504506
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 14 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,20 @@ steps:
- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: '**/*.sln'
projects: '**/ElCamino.DocFx.WebAppRefresh.sln'
arguments: '-c $(BuildConfiguration)'
displayName: 'build projects'

- task: CopyFiles@1
displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)'
inputs:
Contents: |
**/*.dll
**/*.nupkg
**/*.snupkg
**/*.zip
**/publish/**
TargetFolder: '$(Build.ArtifactStagingDirectory)'

- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: drop'
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>net9</TargetFramework>
<Version>2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 4504506

Please sign in to comment.