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.
|
- steps:
- - task: DotNetCoreCLI@2
- inputs:
- command: restore
- projects: 'Discord.Net.sln'
-
- - task: DotNetCoreCLI@2
- inputs:
- command: build
- projects: 'Discord.Net.sln'
- configuration: $(buildConfiguration)
- arguments: '/p:BuildNumber=$(buildNumber) /p:IsTagBuild=$(buildTag)'
-
- - task: DotNetCoreCLI@2
- inputs:
- command: test
- projects: './test/**/*.csproj'
- configuration: $(buildConfiguration)
- nobuild: True
|