Skip to content

Commit 53e4778

Browse files
add rich nav (#1959)
* add rich nav * move to CI template * add rootDir for Rich Nav * change to current directory
1 parent 77e11be commit 53e4778

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.vsts-ci/templates/ci-general.yml

+11
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,14 @@ steps:
1818
inputs:
1919
ArtifactName: vscode-powershell
2020
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
21+
# Rich Navigation
22+
- task: RichCodeNavIndexer@0
23+
# Note, for now, this is Windows only.
24+
condition: and(succeededOrFailed(), eq(variables['Agent.OS'], 'Windows_NT'))
25+
continueOnError: true
26+
inputs:
27+
serviceConnection: 'rich-nav'
28+
nugetServiceConnection: 'rich-nav-nuget'
29+
githubServiceConnection: 'PowerShell'
30+
languages: 'typescript,csharp'
31+
serviceEndpoint: 'https://prod.richnav.vsengsaas.visualstudio.com'

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"rootDir": ".",
34
"module": "commonjs",
45
"target": "es6",
56
"outDir": "out",
@@ -9,4 +10,4 @@
910
"exclude": [
1011
"node_modules"
1112
]
12-
}
13+
}

0 commit comments

Comments
 (0)