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

link to task json schema #309

Merged
merged 1 commit into from Feb 6, 2018
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion node/README.md
Expand Up @@ -15,7 +15,7 @@ Cross platform tasks are written in Typescript. It is the preferred way to writ

Step by Step: [Create Task](docs/stepbystep.md)

Documentation: [Typescript API](docs/vsts-task-lib.md)
Documentation: [Typescript API](docs/vsts-task-lib.md), [task JSON schema](https://aka.ms/vsts-tasks.schema.json)

Guidance: [Finding Files](docs/findingfiles.md), [Minimum agent version](docs/minagent.md), [Proxy](docs/proxy.md), [Certificate](docs/cert.md)

Expand Down
2 changes: 1 addition & 1 deletion node/docs/stepbystep.md
Expand Up @@ -76,7 +76,7 @@ Change `tsconfig.json` file to ES6 to match the sample gist. ES6 is for async a

Now that the scaffolding is out of the way, let's create the task!

Create a `task.json` file using `sample_task.json` as a starting point.
Create a `task.json` file using `sample_task.json` as a starting point. The full task JSON schema is [here](https://aka.ms/vsts-tasks.schema.json).

Replace the `{{placeholders}}`. The most important being a [unique guid](http://www.guidgen.com/).
Note: copy from web view since file needs property names in quotes (browser might strip in raw view)
Expand Down