Skip to content

Commit 597f2c9

Browse files
authored
Cherry-Pick on PublishSymbols Task: Make SymbolServerType to be explicitly selected (#5204) (#5206)
Make SymbolServerType to be explicitly selected to handle on-prem scenario
1 parent 60443ac commit 597f2c9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Tasks/PublishSymbols/Strings/resources.resjson/en-US/resources.resjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"loc.input.label.PublishSymbols": "Publish symbols",
1414
"loc.input.help.PublishSymbols": "Indicates whether to publish the symbol files.",
1515
"loc.input.label.SymbolServerType": "Symbol Server Type",
16-
"loc.input.help.SymbolServerType": "Choose where to publish symbols. The \"Team Services\" option is under private preview. Follow [these instructions](https://go.microsoft.com/fwlink/?linkid=846265) to participate in the private preview.",
16+
"loc.input.help.SymbolServerType": "Choose where to publish symbols. The \"Team Services\" option is under private preview. Team Foundation Server only supports the \"File share\" option. Follow [these instructions](https://go.microsoft.com/fwlink/?linkid=846265) to participate in the private preview.",
1717
"loc.input.label.SymbolsPath": "Path to publish symbols",
1818
"loc.input.help.SymbolsPath": "Path to publish symbols.",
1919
"loc.input.label.DetailedLog": "Verbose logging",

Tasks/PublishSymbols/task.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,11 @@
6161
"type": "pickList",
6262
"label": "Symbol Server Type",
6363
"required": true,
64-
"defaultValue": "TeamServices",
65-
"helpMarkDown": "Choose where to publish symbols. The \"Team Services\" option is under private preview. Follow [these instructions](https://go.microsoft.com/fwlink/?linkid=846265) to participate in the private preview.",
64+
"defaultValue": " ",
65+
"helpMarkDown": "Choose where to publish symbols. The \"Team Services\" option is under private preview. Team Foundation Server only supports the \"File share\" option. Follow [these instructions](https://go.microsoft.com/fwlink/?linkid=846265) to participate in the private preview.",
6666
"options":
6767
{
68+
" ": "Select one",
6869
"TeamServices": "Team Services",
6970
"FileShare": "File share"
7071
},

Tasks/PublishSymbols/task.loc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@
6161
"type": "pickList",
6262
"label": "ms-resource:loc.input.label.SymbolServerType",
6363
"required": true,
64-
"defaultValue": "TeamServices",
64+
"defaultValue": " ",
6565
"helpMarkDown": "ms-resource:loc.input.help.SymbolServerType",
6666
"options": {
67+
" ": "Select one",
6768
"TeamServices": "Team Services",
6869
"FileShare": "File share"
6970
},

0 commit comments

Comments
 (0)