diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-05 01:17:12 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-08-05 01:17:12 +0800 |
commit | d672c104272b22c23a736d745dcc72f0ca31f085 (patch) | |
tree | 0aae45a78a152feba3fb461614d4ba1d526c085d | |
parent | 06e279d83db60ada75392291d0c288ba7239df6d (diff) | |
download | timeline-d672c104272b22c23a736d745dcc72f0ca31f085.tar.gz timeline-d672c104272b22c23a736d745dcc72f0ca31f085.tar.bz2 timeline-d672c104272b22c23a736d745dcc72f0ca31f085.zip |
Use newer dotnet sdk that supports CC in CI.
-rw-r--r-- | CI/build-pipeline.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CI/build-pipeline.yml b/CI/build-pipeline.yml index 64a851f0..2b9ce5fb 100644 --- a/CI/build-pipeline.yml +++ b/CI/build-pipeline.yml @@ -9,6 +9,11 @@ pool: vmImage: 'Ubuntu-16.04'
steps:
+- task: UseDotNet@2
+ inputs:
+ packageType: sdk
+ version: 2.2.x
+
- script: |
dotnet restore Timeline/Timeline.csproj --configfile nuget.config
dotnet restore Timeline.Tests/Timeline.Tests.csproj --configfile nuget.config
|