Skip to content

Commit

Permalink
Fix CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
intelligide committed Mar 23, 2020
1 parent c5d85bc commit f9e71b0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ pool:
vmImage: 'windows-latest'

variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
solution: 'OpenMatch.csharp.sln'
buildConfiguration: 'Release'

steps:
- task: NuGetToolInstaller@1

- task: NuGetCommand@2
- task: DotNetCoreCLI@2
inputs:
restoreSolution: '$(solution)'
command: 'restore'
projects: |
$(solution)
- task: VSBuild@1
- task: DotNetCoreCLI@2
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
command: 'build'
projects: |
$(solution)
arguments: -c $(buildConfiguration)

# - task: VSTest@2
# inputs:
Expand Down

0 comments on commit f9e71b0

Please sign in to comment.