Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tasks/BashV3/bash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ async function run() {
tl.setResult(result, null, true);
}
catch (err: any) {
tl.setResult(tl.TaskResult.Failed, err.message || 'run() failed', true);
tl.setResult(tl.TaskResult.Failed, err.message || 'run() errored out', true);
}
}

Expand Down
2 changes: 1 addition & 1 deletion Tasks/BashV3/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 259,
"Minor": 267,
"Patch": 0
},
"releaseNotes": "Script task consistency. Added support for multiple lines and added support for Windows.",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/BashV3/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 259,
"Minor": 267,
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/DotNetCoreCLIV2/pushcommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function run(): Promise<void> {
const testPrefixes = tl.getVariable('DotNetCoreCLITask.ExtraUrlPrefixesForTesting');
if (testPrefixes) {
urlPrefixes = urlPrefixes.concat(testPrefixes.split(';'));
tl.debug(`all URL prefixes: ${urlPrefixes}`);
tl.debug(`full URL prefixes: ${urlPrefixes}`);
}

// Setting up auth info
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": 266,
"Minor": 267,
"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": 266,
"Minor": 267,
"Patch": 0
},
"minimumAgentVersion": "2.144.0",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/GradleV4/gradletask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async function run() {
codeAnalysisResult.analysisError = err;

console.error(err);
tl.debug('taskRunner fail');
tl.debug('taskRunner errored out');
}

tl.debug('Processing code analysis results');
Expand Down
2 changes: 1 addition & 1 deletion Tasks/GradleV4/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 4,
"Minor": 266,
"Minor": 267,
"Patch": 0
},
"releaseNotes": "The Code Coverage option is deprecated. Refer to the [PublishCodeCoverageResultsV2 Task] (https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/reference/publish-code-coverage-results-v2?view=azure-pipelines) to get code coverage results.",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/GradleV4/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 4,
"Minor": 266,
"Minor": 267,
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
Expand Down
1 change: 1 addition & 0 deletions Tasks/MSBuildV1/MSBuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ try {
# Resolve match patterns.
$solutionFiles = Get-SolutionFiles -Solution $solution

# Format the MSBuild args.
# Format the MSBuild args.
$msBuildArguments = Format-MSBuildArguments -MSBuildArguments $msBuildArguments -Platform $platform -Configuration $configuration -MaximumCpuCount:$maximumCpuCount

Expand Down
2 changes: 1 addition & 1 deletion Tasks/MSBuildV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 1,
"Minor": 267,
"Patch": 0
"Patch": 3
},
"demands": [
"msbuild"
Expand Down
2 changes: 1 addition & 1 deletion Tasks/MSBuildV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 1,
"Minor": 267,
"Patch": 0
"Patch": 3
},
"demands": [
"msbuild"
Expand Down
2 changes: 1 addition & 1 deletion Tasks/MavenV4/maventask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var mvnExec: string = '';

if (mavenVersionSelection == 'Path') {
// The path to Maven has been explicitly specified
tl.debug('Using Maven path from user input');
tl.debug('Using Maven path from user input provided');
var mavenPath = tl.getPathInput('mavenPath', true, true);
mvnExec = path.join(mavenPath, 'bin', 'mvn');

Expand Down
2 changes: 1 addition & 1 deletion Tasks/MavenV4/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 4,
"Minor": 266,
"Minor": 267,
"Patch": 0
},
"releaseNotes": "Configuration of the SonarQube analysis was moved to the [SonarQube](https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube) or [SonarCloud](https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarcloud) extensions, in task `Prepare Analysis Configuration`",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/MavenV4/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 4,
"Minor": 266,
"Minor": 267,
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
Expand Down
Loading