Skip to content

Commit 5a82359

Browse files
authored
Merge pull request #1167 from v-mohithgc/v-user/mgc/externaltfscgfixes
ExternalTFS CG fixes
2 parents 4e1c3b0 + 14f1e6c commit 5a82359

File tree

18 files changed

+3566
-205
lines changed

18 files changed

+3566
-205
lines changed

Extensions/ExternalTfs/Src/Tasks/DownloadArtifactsTfsGit/ThirdPartyNotices.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This Azure DevOps Extension is based on or incorporates material from the projec
1717
11. Q (https://github.com/kriskowal/q)
1818
12. semver (https://github.com/npm/node-semver/)
1919
13. ShellJS (https://github.com/shelljs/shelljs)
20-
14. VSTS-Task-Lib (https://github.com/Microsoft/vsts-task-lib)
20+
14. azure-pipelines-task-lib (https://github.com/Microsoft/azure-pipelines-task-lib)
2121
15. wrappy (https://github.com/npm/wrappy)
2222

2323

@@ -353,7 +353,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
353353
=========================================
354354
END OF ShellJS NOTICES, INFORMATION, AND LICENSE
355355

356-
%% VSTS-Task-Lib NOTICES, INFORMATION, AND LICENSE BEGIN HERE
356+
%% azure-pipelines-task-lib NOTICES, INFORMATION, AND LICENSE BEGIN HERE
357357
=========================================
358358
The MIT License (MIT)
359359

@@ -378,7 +378,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
378378
SOFTWARE.
379379

380380
=========================================
381-
END OF VSTS-Task-Lib NOTICES, INFORMATION, AND LICENSE
381+
END OF azure-pipelines-task-lib NOTICES, INFORMATION, AND LICENSE
382382

383383
%% wrappy NOTICES, INFORMATION, AND LICENSE BEGIN HERE
384384
=========================================

Extensions/ExternalTfs/Src/Tasks/DownloadArtifactsTfsGit/downloadTfGit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var tl = require('vsts-task-lib/task');
1+
var tl = require('azure-pipelines-task-lib/task');
22
var path = require('path');
33
var webApim = require('azure-devops-node-api/WebApi');
44
var Q = require('q');

Extensions/ExternalTfs/Src/Tasks/DownloadArtifactsTfsGit/gitwrapper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var __extends = (this && this.__extends) || function (d, b) {
44
function __() { this.constructor = d; }
55
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
66
};
7-
var tl = require('vsts-task-lib');
7+
var tl = require('azure-pipelines-task-lib');
88
var events = require('events');
99
var Q = require('q');
1010
var fs = require('fs');

0 commit comments

Comments
 (0)