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

Migrate NuGetToolInstallerV1 task to Node10 #15824

2 changes: 1 addition & 1 deletion Tasks/NuGetToolInstallerV1/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('NuGetToolInstallerV1 Suite', function () {
after(() => {
});

it('Does a basic hello world test', function(done: MochaDone) {
it('Does a basic hello world test', function(done: Mocha.Done) {
// TODO - add real tests
done();
});
Expand Down
59 changes: 41 additions & 18 deletions Tasks/NuGetToolInstallerV1/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Tasks/NuGetToolInstallerV1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@
},
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"dependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.0",
"@types/uuid": "^8.3.0",
"packaging-common": "file:../../_build/Tasks/Common/packaging-common-1.0.1.tgz",
"utility-common": "file:../../_build/Tasks/Common/utility-common-1.0.2.tgz"
},
"devDependencies": {
"typescript": "4.0.2"
}
}
6 changes: 3 additions & 3 deletions Tasks/NuGetToolInstallerV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"Agent",
"DeploymentGroup"
],
"minimumAgentVersion": "2.115.0",
"minimumAgentVersion": "2.144.0",
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 206,
"Minor": 208,
"Patch": 0
},
"preview": false,
Expand Down Expand Up @@ -50,7 +50,7 @@
}
],
"execution": {
"Node": {
"Node10": {
"target": "nugettoolinstaller.js",
"argumentFormat": ""
}
Expand Down
6 changes: 3 additions & 3 deletions Tasks/NuGetToolInstallerV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"Agent",
"DeploymentGroup"
],
"minimumAgentVersion": "2.115.0",
"minimumAgentVersion": "2.144.0",
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 206,
"Minor": 208,
"Patch": 0
},
"preview": false,
Expand Down Expand Up @@ -50,7 +50,7 @@
}
],
"execution": {
"Node": {
"Node10": {
"target": "nugettoolinstaller.js",
"argumentFormat": ""
}
Expand Down