Skip to content

Commit

Permalink
Ensure build configuration is set on dotnet core tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed Feb 9, 2022
1 parent ed9bec2 commit 76bc973
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,20 @@ steps:
command: 'restore'
verbosityRestore: 'minimal'
projects: '$(Build.SourcesDirectory)\EndlessClient.sln'
configuration: '$(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: 'build'
projects: '$(Build.SourcesDirectory)\EndlessClient.sln'
configuration: '$(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'dotnet test - skipping EOLib.Graphics.Test (not supported on VSTS agent)'
inputs:
command: 'test'
projects: '$(Build.SourcesDirectory)\EndlessClient.sln'
arguments: '--filter="TestCategory!=GraphicsDevice'
configuration: '$(buildConfiguration)'
- task: CopyFiles@2
displayName: 'Copy Files to EndlessClient drop upload directory'
inputs:
Expand Down

0 comments on commit 76bc973

Please sign in to comment.