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 | b873a270158837092f6b8563cd402fcacf1d7f9e (patch) | |
tree | 0aae45a78a152feba3fb461614d4ba1d526c085d | |
parent | 86e9d577c22c55892f848130b6a448eb5ab31ece (diff) | |
download | timeline-b873a270158837092f6b8563cd402fcacf1d7f9e.tar.gz timeline-b873a270158837092f6b8563cd402fcacf1d7f9e.tar.bz2 timeline-b873a270158837092f6b8563cd402fcacf1d7f9e.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
|