From a3ccc78fb678f7be04f3d979d0d187ee5a1152a9 Mon Sep 17 00:00:00 2001 From: Madhuri Gummalla Date: Mon, 22 May 2017 16:21:25 -0400 Subject: [PATCH] enable only support for dSYMs for symbols (#4377) --- Tasks/VSMobileCenterUpload/task.json | 10 +++------- Tasks/VSMobileCenterUpload/task.loc.json | 10 +++------- Tasks/VSMobileCenterUpload/vsmobilecenterupload.ts | 7 +++++++ 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/Tasks/VSMobileCenterUpload/task.json b/Tasks/VSMobileCenterUpload/task.json index 11d5d77df3d8..5e5720159e85 100644 --- a/Tasks/VSMobileCenterUpload/task.json +++ b/Tasks/VSMobileCenterUpload/task.json @@ -12,8 +12,8 @@ "author": "Microsoft Corporation", "version": { "Major": 0, - "Minor": 117, - "Patch": 2 + "Minor": 118, + "Patch": 0 }, "groups": [ { @@ -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" } }, { diff --git a/Tasks/VSMobileCenterUpload/task.loc.json b/Tasks/VSMobileCenterUpload/task.loc.json index 5029cd7c26dc..373d62440a8e 100644 --- a/Tasks/VSMobileCenterUpload/task.loc.json +++ b/Tasks/VSMobileCenterUpload/task.loc.json @@ -12,8 +12,8 @@ "author": "Microsoft Corporation", "version": { "Major": 0, - "Minor": 117, - "Patch": 2 + "Minor": 118, + "Patch": 0 }, "groups": [ { @@ -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" } }, { diff --git a/Tasks/VSMobileCenterUpload/vsmobilecenterupload.ts b/Tasks/VSMobileCenterUpload/vsmobilecenterupload.ts index 7d331aeb8d50..0d63b57816e9 100644 --- a/Tasks/VSMobileCenterUpload/vsmobilecenterupload.ts +++ b/Tasks/VSMobileCenterUpload/vsmobilecenterupload.ts @@ -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) {