From c83209a34fa9a04f81a46e42ba038ab802c271a9 Mon Sep 17 00:00:00 2001 From: Mariana Dematte Date: Wed, 25 Aug 2021 16:20:02 -0700 Subject: [PATCH] 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 --- azure-pipelines.yml | 1 + azure-pipelines/richnav.yml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 azure-pipelines/richnav.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 65832fdb2..4d26004c5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,3 +24,4 @@ jobs: - template: azure-pipelines/build.yml parameters: ShouldSkipOptimize: +- template: azure-pipelines/richnav.yml diff --git a/azure-pipelines/richnav.yml b/azure-pipelines/richnav.yml new file mode 100644 index 000000000..bf45ce786 --- /dev/null +++ b/azure-pipelines/richnav.yml @@ -0,0 +1,19 @@ +jobs: +- job: RichCodeNavUpload + displayName: Rich Code Navigation Upload to Production + pool: Hosted Windows 2019 with VS2019 + steps: + - template: install-dependencies.yml + - task: VSBuild@1 + displayName: Build Visual Studio solution + inputs: + msbuildArgs: /t:build /m /bl:"$(Build.ArtifactStagingDirectory)/build_logs/msbuild.binlog" + platform: Any CPU + configuration: $(BuildConfiguration) + - task: RichCodeNavIndexer@0 + displayName: RichCodeNav Upload + inputs: + languages: 'csharp' + environment: production + isPrivateFeed: false + continueOnError: true \ No newline at end of file