diff options
-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
|