Skip to content

Commit

Permalink
Try removing quotes around configuration argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed Feb 9, 2022
1 parent 4ae89cb commit f404863
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ steps:
inputs:
command: 'build'
projects: '$(Build.SourcesDirectory)\EndlessClient.sln'
arguments: '--configuration $(buildConfiguration)'
arguments: --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)'
arguments: --filter "TestCategory!=GraphicsDevice --configuration $(buildConfiguration)

- task: CopyFiles@2
displayName: 'Copy Files to EndlessClient drop upload directory'
Expand Down

0 comments on commit f404863

Please sign in to comment.