Skip to content

Commit

Permalink
DotNetCoreCLIV2: Update 7Zip (#19351)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-mohithgc authored Dec 7, 2023
1 parent 0dc1dc3 commit 5bdfc46
Show file tree
Hide file tree
Showing 69 changed files with 8,899 additions and 179 deletions.
2 changes: 1 addition & 1 deletion Tasks/DotNetCoreCLIV2/Tests/L0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import os = require('os');
import fs = require('fs');

describe('DotNetCoreExe Suite', function () {
this.timeout(5000);
this.timeout(10000);
before(() => {
});

Expand Down
203 changes: 147 additions & 56 deletions Tasks/DotNetCoreCLIV2/_buildConfigs/Node20/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Tasks/DotNetCoreCLIV2/_buildConfigs/Node20/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"archiver": "1.2.0",
"azure-devops-node-api": "11.2.0",
"azure-pipelines-task-lib": "^4.1.0",
"azure-pipelines-tasks-packaging-common": "^3.214.0",
"azure-pipelines-tasks-utility-common": "^3.212.0",
"azure-pipelines-tasks-packaging-common": "^3.230.0",
"azure-pipelines-tasks-utility-common": "^3.230.0",
"uuid": "3.2.1"
},
"devDependencies": {
Expand Down
187 changes: 140 additions & 47 deletions Tasks/DotNetCoreCLIV2/package-lock.json

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

4 changes: 2 additions & 2 deletions Tasks/DotNetCoreCLIV2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"archiver": "1.2.0",
"azure-devops-node-api": "11.2.0",
"azure-pipelines-task-lib": "^4.1.0",
"azure-pipelines-tasks-packaging-common": "^3.214.0",
"azure-pipelines-tasks-utility-common": "^3.212.0",
"azure-pipelines-tasks-packaging-common": "^3.230.0",
"azure-pipelines-tasks-utility-common": "^3.230.0",
"uuid": "3.2.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion Tasks/DotNetCoreCLIV2/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"demands": [],
"version": {
"Major": 2,
"Minor": 221,
"Minor": 232,
"Patch": 0
},
"minimumAgentVersion": "2.144.0",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/DotNetCoreCLIV2/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"demands": [],
"version": {
"Major": 2,
"Minor": 221,
"Minor": 232,
"Patch": 0
},
"minimumAgentVersion": "2.144.0",
Expand Down
4 changes: 2 additions & 2 deletions _generated/DotNetCoreCLIV2.versionmap.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Default|2.221.0
Node20_229_2|2.231.0
Default|2.232.0
Node20_229_2|2.232.1
14 changes: 14 additions & 0 deletions _generated/DotNetCoreCLIV2/Common/utility.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import * as tl from "azure-pipelines-task-lib/task";

export function getProjectFiles(projectPattern: string[]): string[] {
if (projectPattern.length == 0) {
return [""];
}
var projectFiles: string[] = tl.findMatch(tl.getVariable("System.DefaultWorkingDirectory") || process.cwd(), projectPattern);

if (!projectFiles || !projectFiles.length) {
return [];
}

return projectFiles;
}
Loading

0 comments on commit 5bdfc46

Please sign in to comment.