Skip to content

Commit

Permalink
Merge pull request #1167 from v-mohithgc/v-user/mgc/externaltfscgfixes
Browse files Browse the repository at this point in the history
ExternalTFS CG fixes
  • Loading branch information
v-nagarajku authored Jul 26, 2023
2 parents 4e1c3b0 + 14f1e6c commit 5a82359
Show file tree
Hide file tree
Showing 18 changed files with 3,566 additions and 205 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This Azure DevOps Extension is based on or incorporates material from the projec
11. Q (https://github.com/kriskowal/q)
12. semver (https://github.com/npm/node-semver/)
13. ShellJS (https://github.com/shelljs/shelljs)
14. VSTS-Task-Lib (https://github.com/Microsoft/vsts-task-lib)
14. azure-pipelines-task-lib (https://github.com/Microsoft/azure-pipelines-task-lib)
15. wrappy (https://github.com/npm/wrappy)


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

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

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

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

%% wrappy NOTICES, INFORMATION, AND LICENSE BEGIN HERE
=========================================
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var tl = require('vsts-task-lib/task');
var tl = require('azure-pipelines-task-lib/task');
var path = require('path');
var webApim = require('azure-devops-node-api/WebApi');
var Q = require('q');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var __extends = (this && this.__extends) || function (d, b) {
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var tl = require('vsts-task-lib');
var tl = require('azure-pipelines-task-lib');
var events = require('events');
var Q = require('q');
var fs = require('fs');
Expand Down
Loading

0 comments on commit 5a82359

Please sign in to comment.