You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.yml 441 B

12345678910111213141516171819
  1. steps:
  2. - task: DotNetCoreCLI@2
  3. inputs:
  4. command: restore
  5. projects: 'Discord.Net.sln'
  6. - task: DotNetCoreCLI@2
  7. inputs:
  8. command: build
  9. projects: 'Discord.Net.sln'
  10. configuration: $(buildConfiguration)
  11. arguments: '/p:BuildNumber=$(buildNumber) /p:IsTagBuild=$(buildTag)'
  12. - task: DotNetCoreCLI@2
  13. inputs:
  14. command: test
  15. projects: './test/**/*.csproj'
  16. configuration: $(buildConfiguration)
  17. nobuild: True