You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update links and string in documents from rebranding (#457)
* Update references to vsts-task-lib to azure-pipelines-task-lib
* Rename files in node docs
* Keep capitalization consistent in headings
* Bump patch version
* Don't need patch bump for powershell
Only docs were changed.
Copy file name to clipboardExpand all lines: node/ThirdPartyNotice.txt
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
3
3
Do Not Translate or Localize
4
4
5
-
This Visual Studio Team Services extension (vsts-task-lib) is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Visual Studio Team Services extension. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise.
5
+
This Azure Pipelines extension (azure-pipelines-task-lib) is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Visual Studio Team Services extension. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise.
Copy file name to clipboardExpand all lines: node/docs/azure-pipelines-task-lib.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
-
# VSTS-TASK-LIB TYPESCRIPT API
1
+
# AZURE-PIPELINES-TASK-LIB TYPESCRIPT API
2
2
3
3
## Dependencies
4
4
A [cross platform agent](https://github.com/Microsoft/vso-agent) OR a TFS 2015 Update 2 Windows agent (or higher) is required to run a Node task end-to-end. However, an agent is not required for interactively testing the task.
5
5
6
6
## Importing
7
-
For now, the built vsts-task-lib (in _build) should be packaged with your task in a node_modules folder
7
+
For now, the built azure-pipelines-task-lib (in _build) should be packaged with your task in a node_modules folder
8
8
9
-
The build generates a vsts-task-lib.d.ts file for use when compiling tasks
9
+
The build generates a azure-pipelines-task-lib.d.ts file for use when compiling tasks
10
10
In the example below, it is in a folder named definitions above the tasks lib
writeLine('A [cross platform agent](https://github.com/Microsoft/vso-agent) OR a TFS 2015 Update 2 Windows agent (or higher) is required to run a Node task end-to-end. However, an agent is not required for interactively testing the task.');
162
162
writeLine();
163
163
writeLine('## Importing');
164
-
writeLine('For now, the built vsts-task-lib (in _build) should be packaged with your task in a node_modules folder');
164
+
writeLine('For now, the built azure-pipelines-task-lib (in _build) should be packaged with your task in a node_modules folder');
165
165
writeLine();
166
-
writeLine('The build generates a vsts-task-lib.d.ts file for use when compiling tasks');
166
+
writeLine('The build generates a azure-pipelines-task-lib.d.ts file for use when compiling tasks');
167
167
writeLine('In the example below, it is in a folder named definitions above the tasks lib');
In the following example, we will retrieve proxy configuration information and use VSTS-Node-Api to make a Rest Api call back to VSTS/TFS service, the Rest call will go through the web proxy you configured in `.proxy` file.
0 commit comments