diff --git a/Tasks/ANT/task.json b/Tasks/ANT/task.json index 2062a73069d2..04c5cfbea575 100644 --- a/Tasks/ANT/task.json +++ b/Tasks/ANT/task.json @@ -4,6 +4,9 @@ "friendlyName": "Ant", "description": "Build with Apache Ant", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/ANT/task.loc.json b/Tasks/ANT/task.loc.json index 93a4e85b2afa..6f55f6278319 100644 --- a/Tasks/ANT/task.loc.json +++ b/Tasks/ANT/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/AndroidBuild/task.json b/Tasks/AndroidBuild/task.json index 1b76b8968a47..32141d650981 100644 --- a/Tasks/AndroidBuild/task.json +++ b/Tasks/AndroidBuild/task.json @@ -4,6 +4,9 @@ "friendlyName": "Android Build", "description": "Build an Android app using Gradle and optionally start the emulator for unit tests", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/AndroidBuild/task.loc.json b/Tasks/AndroidBuild/task.loc.json index 5650bd2b166d..dffc551f0dc5 100644 --- a/Tasks/AndroidBuild/task.loc.json +++ b/Tasks/AndroidBuild/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/AndroidSigning/task.json b/Tasks/AndroidSigning/task.json index aed12aa165c3..26e7b04d1313 100644 --- a/Tasks/AndroidSigning/task.json +++ b/Tasks/AndroidSigning/task.json @@ -4,6 +4,9 @@ "friendlyName": "Android Signing", "description": "Sign and align Android APK files", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/AndroidSigning/task.loc.json b/Tasks/AndroidSigning/task.loc.json index 9e790f388673..2a46d98c3c26 100644 --- a/Tasks/AndroidSigning/task.loc.json +++ b/Tasks/AndroidSigning/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/AzureCloudPowerShellDeployment/task.json b/Tasks/AzureCloudPowerShellDeployment/task.json index 22f13f2ba04c..5365c5622328 100644 --- a/Tasks/AzureCloudPowerShellDeployment/task.json +++ b/Tasks/AzureCloudPowerShellDeployment/task.json @@ -4,6 +4,10 @@ "friendlyName": "Azure Cloud Service Deployment", "description": "Deploy an Azure Cloud Service", "category": "Deploy", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -49,15 +53,17 @@ "name": "CsPkg", "type": "string", "label": "CsPkg", - "defaultValue": "$(build.stagingDirectory)\\*.cspkg", - "required": true + "defaultValue": "", + "required": true, + "helpMarkDown": "Path of CsPkg under the default artifact directory of the agent." }, { "name": "CsCfg", "type": "string", "label": "CsCfg", - "defaultValue": "$(build.stagingDirectory)\\*.cscfg", - "required": true + "defaultValue": "", + "required": true, + "helpMarkDown": "Path of CsCfg under the default artifact directory of the agent." }, { "name": "Slot", diff --git a/Tasks/AzureCloudPowerShellDeployment/task.loc.json b/Tasks/AzureCloudPowerShellDeployment/task.loc.json index e80e2ec99c45..cf904ac948d5 100644 --- a/Tasks/AzureCloudPowerShellDeployment/task.loc.json +++ b/Tasks/AzureCloudPowerShellDeployment/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Deploy", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -52,15 +56,17 @@ "name": "CsPkg", "type": "string", "label": "ms-resource:loc.input.label.CsPkg", - "defaultValue": "$(build.stagingDirectory)\\*.cspkg", - "required": true + "defaultValue": "", + "required": true, + "helpMarkDown": "Path of CsPkg under the default artifact directory of the agent." }, { "name": "CsCfg", "type": "string", "label": "ms-resource:loc.input.label.CsCfg", - "defaultValue": "$(build.stagingDirectory)\\*.cscfg", - "required": true + "defaultValue": "", + "required": true, + "helpMarkDown": "Path of CsCfg under the default artifact directory of the agent." }, { "name": "Slot", diff --git a/Tasks/AzurePowerShell/task.json b/Tasks/AzurePowerShell/task.json index 39a22a9a6c78..cb2dd0ebc153 100644 --- a/Tasks/AzurePowerShell/task.json +++ b/Tasks/AzurePowerShell/task.json @@ -4,6 +4,10 @@ "friendlyName": "Azure PowerShell", "description": "Run a PowerShell script within an Azure environment", "category": "Deploy", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -28,7 +32,7 @@ "label": "Script Path", "defaultValue": "", "required": true, - "helpMarkDown": "Relative path from the repo root of the script to run." + "helpMarkDown": "Path of the script relative to the default working directory of the agent." }, { "name": "ScriptArguments", diff --git a/Tasks/AzurePowerShell/task.loc.json b/Tasks/AzurePowerShell/task.loc.json index 95c0a7c9939c..c6bad3dc1cb0 100644 --- a/Tasks/AzurePowerShell/task.loc.json +++ b/Tasks/AzurePowerShell/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Deploy", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -31,7 +35,7 @@ "label": "ms-resource:loc.input.label.ScriptPath", "defaultValue": "", "required": true, - "helpMarkDown": "Relative path from the repo root of the script to run." + "helpMarkDown": "Path of the script relative to the default working directory of the agent." }, { "name": "ScriptArguments", diff --git a/Tasks/AzureWebPowerShellDeployment/task.json b/Tasks/AzureWebPowerShellDeployment/task.json index ae421483b90e..ae3b4fc684fc 100644 --- a/Tasks/AzureWebPowerShellDeployment/task.json +++ b/Tasks/AzureWebPowerShellDeployment/task.json @@ -4,6 +4,10 @@ "friendlyName": "Azure Web Site Deployment", "description": "Deploy a website to Microsoft Azure", "category": "Deploy", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -41,7 +45,7 @@ "name": "Package", "type": "string", "label": "Package", - "defaultValue": "$(build.stagingDirectory)\\*.zip", + "defaultValue": "Path of package under the default artifact directory of the agent.", "required": true }, { diff --git a/Tasks/AzureWebPowerShellDeployment/task.loc.json b/Tasks/AzureWebPowerShellDeployment/task.loc.json index 9ecf7189d830..b97fa2798bb3 100644 --- a/Tasks/AzureWebPowerShellDeployment/task.loc.json +++ b/Tasks/AzureWebPowerShellDeployment/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Deploy", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -44,7 +48,7 @@ "name": "Package", "type": "string", "label": "ms-resource:loc.input.label.Package", - "defaultValue": "$(build.stagingDirectory)\\*.zip", + "defaultValue": "Path of package under the default artifact directory of the agent.", "required": true }, { diff --git a/Tasks/BatchScript/task.json b/Tasks/BatchScript/task.json index 4e0a02bc71f5..f8002d02099d 100644 --- a/Tasks/BatchScript/task.json +++ b/Tasks/BatchScript/task.json @@ -4,6 +4,10 @@ "friendlyName": "Batch Script", "description": "Run a windows cmd or bat script and optionally allow it to change the environment", "category": "Utility", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -27,7 +31,7 @@ "label": "Path", "defaultValue":"", "required": true, - "helpMarkDown": "Relative path from repo root of the cmd or bat script file to run." + "helpMarkDown": "Path of the cmd or bat script to execute relative to the default working directory of the agent." }, { "name": "arguments", diff --git a/Tasks/BatchScript/task.loc.json b/Tasks/BatchScript/task.loc.json index 692f83f6eab9..9324bc55bf10 100644 --- a/Tasks/BatchScript/task.loc.json +++ b/Tasks/BatchScript/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Utility", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -30,7 +34,7 @@ "label": "ms-resource:loc.input.label.filename", "defaultValue": "", "required": true, - "helpMarkDown": "Relative path from repo root of the cmd or bat script file to run." + "helpMarkDown": "Path of the cmd or bat script to execute relative to the default working directory of the agent." }, { "name": "arguments", diff --git a/Tasks/CMake/task.json b/Tasks/CMake/task.json index 58b0de1af530..5d14a7dcb837 100644 --- a/Tasks/CMake/task.json +++ b/Tasks/CMake/task.json @@ -4,6 +4,9 @@ "friendlyName": "CMake", "description": "Build with the CMake cross-platform build system", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "demands" : [ "cmake" diff --git a/Tasks/CMake/task.loc.json b/Tasks/CMake/task.loc.json index c06e52a275f2..8f520ac9f292 100644 --- a/Tasks/CMake/task.loc.json +++ b/Tasks/CMake/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "demands": [ "cmake" diff --git a/Tasks/CmdLine/task.json b/Tasks/CmdLine/task.json index cb6d7754136f..27981f1a8240 100644 --- a/Tasks/CmdLine/task.json +++ b/Tasks/CmdLine/task.json @@ -4,6 +4,10 @@ "friendlyName": "Command Line", "description": "Run a command line with arguments", "category": "Utility", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/CmdLine/task.loc.json b/Tasks/CmdLine/task.loc.json index 8a812f4c6a44..82b51743c736 100644 --- a/Tasks/CmdLine/task.loc.json +++ b/Tasks/CmdLine/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Utility", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/CocoaPods/task.json b/Tasks/CocoaPods/task.json index 49f626f9227a..35ed5aaf248b 100644 --- a/Tasks/CocoaPods/task.json +++ b/Tasks/CocoaPods/task.json @@ -4,6 +4,9 @@ "friendlyName": "CocoaPods", "description": "CocoaPods is the dependency manager for Swift and Objective-C Cocoa projects. Runs pod install.", "category": "Package", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 0, diff --git a/Tasks/CocoaPods/task.loc.json b/Tasks/CocoaPods/task.loc.json index fa166e840266..92c443203221 100644 --- a/Tasks/CocoaPods/task.loc.json +++ b/Tasks/CocoaPods/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Package", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 0, diff --git a/Tasks/DeployTestAgent/task.json b/Tasks/DeployTestAgent/task.json index 600a9b9dab8f..03b3c8eb21df 100644 --- a/Tasks/DeployTestAgent/task.json +++ b/Tasks/DeployTestAgent/task.json @@ -6,7 +6,8 @@ "category": "Test", "visibility": [ "Preview", - "Build" + "Build", + "Release" ], "author": "Microsoft Corporation", "version": { diff --git a/Tasks/DeployTestAgent/task.loc.json b/Tasks/DeployTestAgent/task.loc.json index a111a30d4135..b270273f4e80 100644 --- a/Tasks/DeployTestAgent/task.loc.json +++ b/Tasks/DeployTestAgent/task.loc.json @@ -9,7 +9,8 @@ "category": "Test", "visibility": [ "Preview", - "Build" + "Build", + "Release" ], "author": "Microsoft Corporation", "version": { diff --git a/Tasks/DeployToTfsEnvironment/task.json b/Tasks/DeployToTfsEnvironment/task.json index e38573fb0b0a..dac2cf3372f5 100644 --- a/Tasks/DeployToTfsEnvironment/task.json +++ b/Tasks/DeployToTfsEnvironment/task.json @@ -6,7 +6,8 @@ "category": "Deploy", "visibility": [ "Preview", - "Build" + "Build", + "Release" ], "author": "Microsoft Corporation", "version": { @@ -37,7 +38,7 @@ "label": "Source", "defaultValue": "", "required": true, - "helpMarkDown": "Location of the application binaries. Variables like $(Build.Repository.LocalPath) can be used for binaries in the Automation Agent. For example, $(Build.Repository.LocalPath)\\BudgetIT\\Web." + "helpMarkDown": "Location of the application binaries under the default working directory of the agent." }, { "name": "ApplicationPath", diff --git a/Tasks/DeployToTfsEnvironment/task.loc.json b/Tasks/DeployToTfsEnvironment/task.loc.json index 30489fdb6077..8ac7cf94894a 100644 --- a/Tasks/DeployToTfsEnvironment/task.loc.json +++ b/Tasks/DeployToTfsEnvironment/task.loc.json @@ -9,7 +9,8 @@ "category": "Deploy", "visibility": [ "Preview", - "Build" + "Build", + "Release" ], "author": "Microsoft Corporation", "version": { @@ -40,7 +41,7 @@ "label": "ms-resource:loc.input.label.SourcePackage", "defaultValue": "", "required": true, - "helpMarkDown": "Location of the application binaries. Variables like $(Build.Repository.LocalPath) can be used for binaries in the Automation Agent. For example, $(Build.Repository.LocalPath)\\BudgetIT\\Web." + "helpMarkDown": "Location of the application binaries under the default working directory of the agent." }, { "name": "ApplicationPath", diff --git a/Tasks/Gradle/task.json b/Tasks/Gradle/task.json index 0e7c8fcd6ce6..968c89871dab 100644 --- a/Tasks/Gradle/task.json +++ b/Tasks/Gradle/task.json @@ -4,6 +4,9 @@ "friendlyName": "Gradle", "description": "Build using a Gradle wrapper script", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/Gradle/task.loc.json b/Tasks/Gradle/task.loc.json index 2edb442b4ff6..aad5ee124990 100644 --- a/Tasks/Gradle/task.loc.json +++ b/Tasks/Gradle/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/Gulp/task.json b/Tasks/Gulp/task.json index 40223d83e8df..eb885eabb9f8 100644 --- a/Tasks/Gulp/task.json +++ b/Tasks/Gulp/task.json @@ -4,6 +4,9 @@ "friendlyName": "Gulp", "description": "Build with a Node.js streaming, task-based build system", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 0, diff --git a/Tasks/Gulp/task.loc.json b/Tasks/Gulp/task.loc.json index b1529db43664..b4c7d132b29c 100644 --- a/Tasks/Gulp/task.loc.json +++ b/Tasks/Gulp/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 0, diff --git a/Tasks/MSBuild/task.json b/Tasks/MSBuild/task.json index e944b079bec6..87ebc9792abc 100644 --- a/Tasks/MSBuild/task.json +++ b/Tasks/MSBuild/task.json @@ -4,6 +4,9 @@ "friendlyName": "MSBuild", "description": "Build with MSBuild", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/MSBuild/task.loc.json b/Tasks/MSBuild/task.loc.json index 153a3d3b4f15..e13e543a5a6a 100644 --- a/Tasks/MSBuild/task.loc.json +++ b/Tasks/MSBuild/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/Maven/task.json b/Tasks/Maven/task.json index 3857c0f871e2..a2cc40021e9b 100644 --- a/Tasks/Maven/task.json +++ b/Tasks/Maven/task.json @@ -4,6 +4,9 @@ "friendlyName": "Maven", "description": "Build with Apache Maven", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "demands" : [ "maven" diff --git a/Tasks/Maven/task.loc.json b/Tasks/Maven/task.loc.json index 3ac1bcb78594..6e4368f95111 100644 --- a/Tasks/Maven/task.loc.json +++ b/Tasks/Maven/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "demands": [ "maven" diff --git a/Tasks/RunDistributedTests/task.json b/Tasks/RunDistributedTests/task.json index d4abbed30ef9..542e92e18537 100644 --- a/Tasks/RunDistributedTests/task.json +++ b/Tasks/RunDistributedTests/task.json @@ -6,7 +6,8 @@ "category": "Test", "visibility": [ "Preview", - "Build" + "Build", + "Release" ], "author": "Microsoft Corporation", "version": { diff --git a/Tasks/RunDistributedTests/task.loc.json b/Tasks/RunDistributedTests/task.loc.json index d92585a75967..3a7fe9d1d920 100644 --- a/Tasks/RunDistributedTests/task.loc.json +++ b/Tasks/RunDistributedTests/task.loc.json @@ -9,7 +9,8 @@ "category": "Test", "visibility": [ "Preview", - "Build" + "Build", + "Release" ], "author": "Microsoft Corporation", "version": { diff --git a/Tasks/ShellScript/task.json b/Tasks/ShellScript/task.json index 2f23e233c902..856dd92e49e6 100644 --- a/Tasks/ShellScript/task.json +++ b/Tasks/ShellScript/task.json @@ -4,6 +4,9 @@ "friendlyName": "Shell Script", "description": "Run a shell script using bash", "category": "Utility", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/ShellScript/task.loc.json b/Tasks/ShellScript/task.loc.json index deec09e88b9e..4fdbd30391cd 100644 --- a/Tasks/ShellScript/task.loc.json +++ b/Tasks/ShellScript/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Utility", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/VSBuild/task.json b/Tasks/VSBuild/task.json index 0a7ecd0942e6..8b14fb48e4a8 100644 --- a/Tasks/VSBuild/task.json +++ b/Tasks/VSBuild/task.json @@ -4,6 +4,9 @@ "friendlyName": "Visual Studio Build", "description": "Build with MSBuild in the Visual Studio Developer Command Prompt", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/VSBuild/task.loc.json b/Tasks/VSBuild/task.loc.json index 8c61f0872b15..b956ee8bc5f6 100644 --- a/Tasks/VSBuild/task.loc.json +++ b/Tasks/VSBuild/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/VsTest/task.json b/Tasks/VsTest/task.json index 204a40bee63a..36960e3c02f4 100644 --- a/Tasks/VsTest/task.json +++ b/Tasks/VsTest/task.json @@ -4,6 +4,10 @@ "friendlyName": "Visual Studio Test", "description": "Run tests with Visual Studio test runner", "category": "Test", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/VsTest/task.loc.json b/Tasks/VsTest/task.loc.json index 3106620a8776..81a2d88ec672 100644 --- a/Tasks/VsTest/task.loc.json +++ b/Tasks/VsTest/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Test", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamarinAndroid/task.json b/Tasks/XamarinAndroid/task.json index 7fa687b746e2..9e1925ec6898 100644 --- a/Tasks/XamarinAndroid/task.json +++ b/Tasks/XamarinAndroid/task.json @@ -4,6 +4,9 @@ "friendlyName": "Xamarin Android", "description": "Build an Android app with Xamarin", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamarinAndroid/task.loc.json b/Tasks/XamarinAndroid/task.loc.json index 7526051cd538..f614951b9d7f 100644 --- a/Tasks/XamarinAndroid/task.loc.json +++ b/Tasks/XamarinAndroid/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamarinLicense/task.json b/Tasks/XamarinLicense/task.json index 6bf946ce2994..832423bbff37 100644 --- a/Tasks/XamarinLicense/task.json +++ b/Tasks/XamarinLicense/task.json @@ -4,6 +4,9 @@ "friendlyName": "Xamarin License", "description": "Activate or deactivate Xamarin licenses", "category": "Utility", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamarinLicense/task.loc.json b/Tasks/XamarinLicense/task.loc.json index 203a1cc5dcfe..707fa1ecee66 100644 --- a/Tasks/XamarinLicense/task.loc.json +++ b/Tasks/XamarinLicense/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Utility", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamarinTestCloud/task.json b/Tasks/XamarinTestCloud/task.json index ebf5e55d731d..f52401cc6aa9 100644 --- a/Tasks/XamarinTestCloud/task.json +++ b/Tasks/XamarinTestCloud/task.json @@ -4,6 +4,9 @@ "friendlyName": "Xamarin Test Cloud", "description": "Test mobile apps with Xamarin Test Cloud using Xamarin.UITest", "category": "Test", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamarinTestCloud/task.loc.json b/Tasks/XamarinTestCloud/task.loc.json index 1420ad2a8903..4bf6d02bbf56 100644 --- a/Tasks/XamarinTestCloud/task.loc.json +++ b/Tasks/XamarinTestCloud/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Test", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamariniOS/task.json b/Tasks/XamariniOS/task.json index fee60318ba78..49e01060e6f4 100644 --- a/Tasks/XamariniOS/task.json +++ b/Tasks/XamariniOS/task.json @@ -4,6 +4,9 @@ "friendlyName": "Xamarin iOS", "description": "Build an iOS app with Xamarin on Mac OS", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XamariniOS/task.loc.json b/Tasks/XamariniOS/task.loc.json index c339d3cef2bf..94fb60f15a6b 100644 --- a/Tasks/XamariniOS/task.loc.json +++ b/Tasks/XamariniOS/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/Xcode/task.json b/Tasks/Xcode/task.json index 304137087882..be4660e06ed6 100644 --- a/Tasks/Xcode/task.json +++ b/Tasks/Xcode/task.json @@ -4,6 +4,9 @@ "friendlyName": "Xcode Build", "description": "Build an Xcode workspace on Mac OS", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/Xcode/task.loc.json b/Tasks/Xcode/task.loc.json index 39c243d08680..74d977f4e50a 100644 --- a/Tasks/Xcode/task.loc.json +++ b/Tasks/Xcode/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 1, diff --git a/Tasks/XcodePackageiOS/task.json b/Tasks/XcodePackageiOS/task.json index d85adcb82115..670ecb1114d6 100644 --- a/Tasks/XcodePackageiOS/task.json +++ b/Tasks/XcodePackageiOS/task.json @@ -4,6 +4,9 @@ "friendlyName": "Xcode Package iOS", "description": "Generate an .ipa file from Xcode build output", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 0, diff --git a/Tasks/XcodePackageiOS/task.loc.json b/Tasks/XcodePackageiOS/task.loc.json index 9dda62d5d93b..a1feaee70a74 100644 --- a/Tasks/XcodePackageiOS/task.loc.json +++ b/Tasks/XcodePackageiOS/task.loc.json @@ -7,6 +7,9 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Build", + "visibility": [ + "Build" + ], "author": "Microsoft Corporation", "version": { "Major": 0, diff --git a/Tasks/powerShell/task.json b/Tasks/powerShell/task.json index 7e02810f00ca..a35c66ebf9b7 100644 --- a/Tasks/powerShell/task.json +++ b/Tasks/powerShell/task.json @@ -4,6 +4,10 @@ "friendlyName": "PowerShell", "description": "Run a PowerShell script", "category": "Utility", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -27,7 +31,7 @@ "label": "Script filename", "defaultValue":"", "required":true, - "helpMarkDown": "Relative path from repo root of the PowerShell script file to run." + "helpMarkDown": "Path of the script to execute relative to the default working directory of the agent." }, { "name": "arguments", diff --git a/Tasks/powerShell/task.loc.json b/Tasks/powerShell/task.loc.json index ac5ae9429f78..f3f54faaeac9 100644 --- a/Tasks/powerShell/task.loc.json +++ b/Tasks/powerShell/task.loc.json @@ -7,6 +7,10 @@ "friendlyName": "ms-resource:loc.friendlyName", "description": "ms-resource:loc.description", "category": "Utility", + "visibility": [ + "Build", + "Release" + ], "author": "Microsoft Corporation", "version": { "Major": 1, @@ -30,7 +34,7 @@ "label": "ms-resource:loc.input.label.scriptName", "defaultValue": "", "required": true, - "helpMarkDown": "Relative path from repo root of the PowerShell script file to run." + "helpMarkDown": "Path of the script to execute relative to the default working directory of the agent." }, { "name": "arguments",