Skip to content

Commit 6474c5e

Browse files
matiasroldan6ldardick
authored andcommitted
Fix VA YAML compatibility issues caused by version mismatch
1 parent 1c4b04e commit 6474c5e

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

samples/csharp/assistants/virtual-assistant/VirtualAssistantSample/Pipeline/VirtualAssistantSample.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
11
# specific branch build
22
trigger:
3-
branches:
3+
branches:
44
include:
55
- master
66
- feature/*
7-
7+
88
pool:
9-
name: Hosted VS2017
10-
demands:
11-
- msbuild
12-
- visualstudio
9+
vmimage: 'windows-2019'
1310

1411
variables:
1512
buildPlatform: 'Any CPU'
1613
buildConfiguration: 'Release'
1714

1815
steps:
19-
- task: DotNetCoreInstaller@0
20-
displayName: 'Use .NET Core sdk 2.2.100'
16+
- task: DotNetCoreInstaller@2
17+
displayName: 'Use .NET Core sdk 3.1'
2118
inputs:
22-
version: 2.2.100
19+
version: 3.1.x
2320
continueOnError: true
2421

2522
- task: NuGetToolInstaller@0
26-
displayName: 'Use NuGet 4.9.1'
23+
displayName: 'Use NuGet 5.3.0'
2724
inputs:
28-
versionSpec: 4.9.1
25+
versionSpec: 5.3.0
2926

3027
- task: NuGetCommand@2
3128
displayName: 'NuGet restore'
@@ -68,4 +65,4 @@ steps:
6865
TargetFolder: '$(Build.ArtifactStagingDirectory)\VA'
6966

7067
- task: PublishBuildArtifacts@1
71-
displayName: 'Artifacts'
68+
displayName: 'Artifacts'

0 commit comments

Comments
 (0)