Skip to content

Commit c83209a

Browse files
author
Mariana Dematte
authored
Adding Rich Nav (#897)
* Added jobs for rich nav * Renamed the yml file * Changed from a dotnet build to a Vs build * Changed display name
1 parent 79735d7 commit c83209a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ jobs:
2424
- template: azure-pipelines/build.yml
2525
parameters:
2626
ShouldSkipOptimize:
27+
- template: azure-pipelines/richnav.yml

azure-pipelines/richnav.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
jobs:
2+
- job: RichCodeNavUpload
3+
displayName: Rich Code Navigation Upload to Production
4+
pool: Hosted Windows 2019 with VS2019
5+
steps:
6+
- template: install-dependencies.yml
7+
- task: VSBuild@1
8+
displayName: Build Visual Studio solution
9+
inputs:
10+
msbuildArgs: /t:build /m /bl:"$(Build.ArtifactStagingDirectory)/build_logs/msbuild.binlog"
11+
platform: Any CPU
12+
configuration: $(BuildConfiguration)
13+
- task: RichCodeNavIndexer@0
14+
displayName: RichCodeNav Upload
15+
inputs:
16+
languages: 'csharp'
17+
environment: production
18+
isPrivateFeed: false
19+
continueOnError: true

0 commit comments

Comments
 (0)