Skip to content

Commit db54986

Browse files
author
Maxim Zaytsev
authored
Add Xcode 12 option for xcodeVersion input (#14501)
1 parent a80ff5c commit db54986

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"loc.input.label.scheme": "Scheme",
2020
"loc.input.help.scheme": "(Optional) Enter a scheme name defined in Xcode. It must be a shared scheme, with its <strong>Shared</strong> checkbox enabled under <strong>Managed Schemes</strong> in Xcode. If you specify a <strong>Workspace or project path</strong> above without specifying a scheme, and the workspace has a single shared scheme, it will be automatically used.",
2121
"loc.input.label.xcodeVersion": "Xcode version",
22-
"loc.input.help.xcodeVersion": "Specify the target version of Xcode. Select `Default` to use the default version of Xcode on the agent machine. Selecting a version number (e.g. `Xcode 9`) relies on environment variables being set on the agent machine for the version's location (e.g. `XCODE_9_DEVELOPER_DIR=/Applications/Xcode_9.0.0.app/Contents/Developer`). Select `Specify path` to provide a specific path to the Xcode developer directory.",
22+
"loc.input.help.xcodeVersion": "Specify the target version of Xcode. Select `Default` to use the default version of Xcode on the agent machine. Selecting a version number (e.g. `Xcode 9`) relies on environment variables being set on the agent machine for the version's location (e.g. `XCODE_9_DEVELOPER_DIR=/Applications/Xcode_9.0.0.app/Contents/Developer`). Select `Specify path` to provide a specific path to the Xcode developer directory.<br/>Note: XCode 12 is installed on macOS-10.15 (or higher)",
2323
"loc.input.label.xcodeDeveloperDir": "Xcode developer path",
2424
"loc.input.help.xcodeDeveloperDir": "(Optional) Enter a path to a specific Xcode developer directory (e.g. `/Applications/Xcode_9.0.0.app/Contents/Developer`). This is useful when multiple versions of Xcode are installed on the agent machine.",
2525
"loc.input.label.packageApp": "Create app package",

Tasks/XcodeV5/task.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"author": "Microsoft Corporation",
1313
"version": {
1414
"Major": 5,
15-
"Minor": 179,
15+
"Minor": 184,
1616
"Patch": 0
1717
},
1818
"releaseNotes": "This version of the task is compatible with Xcode 8 - 11. Features that were solely to maintain compatibility with Xcode 7 have been removed. This task has better options for using Microsoft-hosted macOS agents.",
@@ -87,14 +87,15 @@
8787
"type": "pickList",
8888
"label": "Xcode version",
8989
"required": false,
90-
"helpMarkDown": "Specify the target version of Xcode. Select `Default` to use the default version of Xcode on the agent machine. Selecting a version number (e.g. `Xcode 9`) relies on environment variables being set on the agent machine for the version's location (e.g. `XCODE_9_DEVELOPER_DIR=/Applications/Xcode_9.0.0.app/Contents/Developer`). Select `Specify path` to provide a specific path to the Xcode developer directory.",
90+
"helpMarkDown": "Specify the target version of Xcode. Select `Default` to use the default version of Xcode on the agent machine. Selecting a version number (e.g. `Xcode 9`) relies on environment variables being set on the agent machine for the version's location (e.g. `XCODE_9_DEVELOPER_DIR=/Applications/Xcode_9.0.0.app/Contents/Developer`). Select `Specify path` to provide a specific path to the Xcode developer directory.<br/>Note: XCode 12 is installed on macOS-10.15 (or higher)",
9191
"defaultValue": "default",
9292
".comment": "//If you update the options here, be sure to update the Xcode.json build template as well.",
9393
"options": {
9494
"8": "Xcode 8",
9595
"9": "Xcode 9",
9696
"10": "Xcode 10",
9797
"11": "Xcode 11",
98+
"12": "Xcode 12",
9899
"default": "Default",
99100
"specifyPath": "Specify path"
100101
}

Tasks/XcodeV5/task.loc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"author": "Microsoft Corporation",
1313
"version": {
1414
"Major": 5,
15-
"Minor": 179,
15+
"Minor": 184,
1616
"Patch": 0
1717
},
1818
"releaseNotes": "ms-resource:loc.releaseNotes",
@@ -95,6 +95,7 @@
9595
"9": "Xcode 9",
9696
"10": "Xcode 10",
9797
"11": "Xcode 11",
98+
"12": "Xcode 12",
9899
"default": "Default",
99100
"specifyPath": "Specify path"
100101
}

0 commit comments

Comments
 (0)