Skip to content

Commit

Permalink
enable only support for dSYMs for symbols (#4377)
Browse files Browse the repository at this point in the history
  • Loading branch information
madhurig authored May 22, 2017
1 parent 6afc805 commit a3ccc78
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
10 changes: 3 additions & 7 deletions Tasks/VSMobileCenterUpload/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 0,
"Minor": 117,
"Patch": 2
"Minor": 118,
"Patch": 0
},
"groups": [
{
Expand Down Expand Up @@ -55,11 +55,7 @@
"defaultValue": "Apple",
"groupName": "symbols",
"options": {
"Apple": "Apple",
"AndroidJava": "Android (Java)",
"AndroidNative": "Android (native C/C++)",
"Windows": "Windows 8.1",
"UWP": "Universal Windows Platform (UWP)"
"Apple": "Apple"
}
},
{
Expand Down
10 changes: 3 additions & 7 deletions Tasks/VSMobileCenterUpload/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 0,
"Minor": 117,
"Patch": 2
"Minor": 118,
"Patch": 0
},
"groups": [
{
Expand Down Expand Up @@ -55,11 +55,7 @@
"defaultValue": "Apple",
"groupName": "symbols",
"options": {
"Apple": "Apple",
"AndroidJava": "Android (Java)",
"AndroidNative": "Android (native C/C++)",
"Windows": "Windows 8.1",
"UWP": "Universal Windows Platform (UWP)"
"Apple": "Apple"
}
},
{
Expand Down
7 changes: 7 additions & 0 deletions Tasks/VSMobileCenterUpload/vsmobilecenterupload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,13 @@ async function run() {

let appSlug: string = tl.getInput('appSlug', true);
let appFilePattern: string = tl.getInput('app', true);

/* The task has support for different symbol types but Mobile Center server only support Apple currently, add back these types in the task.json when support is available in Mobile Center.
"AndroidJava": "Android (Java)",
"AndroidNative": "Android (native C/C++)",
"Windows": "Windows 8.1",
"UWP": "Universal Windows Platform (UWP)"
*/
let symbolsType: string = tl.getInput('symbolsType', false);
let symbolVariableName = null;
switch (symbolsType) {
Expand Down

0 comments on commit a3ccc78

Please sign in to comment.