Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hiding tasks which are not required in Release Service and cleaning up help text #5

Merged
merged 1 commit into from
Apr 8, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Tasks/ANT/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"friendlyName": "Ant",
"description": "Build with Apache Ant",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/ANT/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/AndroidBuild/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/AndroidBuild/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/AndroidSigning/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"friendlyName": "Android Signing",
"description": "Sign and align Android APK files",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/AndroidSigning/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
14 changes: 10 additions & 4 deletions Tasks/AzureCloudPowerShellDeployment/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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",
Expand Down
14 changes: 10 additions & 4 deletions Tasks/AzureCloudPowerShellDeployment/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 5 additions & 1 deletion Tasks/AzurePowerShell/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
Expand Down
6 changes: 5 additions & 1 deletion Tasks/AzurePowerShell/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
Expand Down
6 changes: 5 additions & 1 deletion Tasks/AzureWebPowerShellDeployment/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
},
{
Expand Down
6 changes: 5 additions & 1 deletion Tasks/AzureWebPowerShellDeployment/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
},
{
Expand Down
6 changes: 5 additions & 1 deletion Tasks/BatchScript/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
Expand Down
6 changes: 5 additions & 1 deletion Tasks/BatchScript/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
Expand Down
3 changes: 3 additions & 0 deletions Tasks/CMake/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"friendlyName": "CMake",
"description": "Build with the CMake cross-platform build system",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"demands" : [
"cmake"
Expand Down
3 changes: 3 additions & 0 deletions Tasks/CMake/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"demands": [
"cmake"
Expand Down
4 changes: 4 additions & 0 deletions Tasks/CmdLine/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 4 additions & 0 deletions Tasks/CmdLine/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/CocoaPods/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/CocoaPods/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"category": "Package",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 0,
Expand Down
3 changes: 2 additions & 1 deletion Tasks/DeployTestAgent/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"category": "Test",
"visibility": [
"Preview",
"Build"
"Build",
"Release"
],
"author": "Microsoft Corporation",
"version": {
Expand Down
3 changes: 2 additions & 1 deletion Tasks/DeployTestAgent/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"category": "Test",
"visibility": [
"Preview",
"Build"
"Build",
"Release"
],
"author": "Microsoft Corporation",
"version": {
Expand Down
5 changes: 3 additions & 2 deletions Tasks/DeployToTfsEnvironment/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"category": "Deploy",
"visibility": [
"Preview",
"Build"
"Build",
"Release"
],
"author": "Microsoft Corporation",
"version": {
Expand Down Expand Up @@ -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",
Expand Down
5 changes: 3 additions & 2 deletions Tasks/DeployToTfsEnvironment/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"category": "Deploy",
"visibility": [
"Preview",
"Build"
"Build",
"Release"
],
"author": "Microsoft Corporation",
"version": {
Expand Down Expand Up @@ -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",
Expand Down
3 changes: 3 additions & 0 deletions Tasks/Gradle/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"friendlyName": "Gradle",
"description": "Build using a Gradle wrapper script",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/Gradle/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"category": "Build",
"visibility": [
"Build"
],
"author": "Microsoft Corporation",
"version": {
"Major": 1,
Expand Down
3 changes: 3 additions & 0 deletions Tasks/Gulp/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading