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:
- - script: dotnet restore -v minimal Discord.Net.sln
- displayName: Restore packages
-
- - script: dotnet build "Discord.Net.sln" --no-restore -v minimal -c $(buildConfiguration) /p:BuildNumber=$(buildNumber) /p:IsTagBuild=$(buildTag)
- displayName: Build projects
-
- - script: dotnet test "test/Discord.Net.Tests/Discord.Net.Tests.csproj" --no-restore --no-build -v minimal -c $(buildConfiguration) --logger trx
- # TODO: update this to support multiple tests
- displayName: Test projects
-
- - task: PublishTestResults@2
- displayName: Publish test results
- condition: succeededOrFailed()
- inputs:
- testRunner: VSTest
- testResultsFiles: '**/*.trx'
|