diff --git a/Tasks/MSBuildV1/MSBuild.ps1 b/Tasks/MSBuildV1/MSBuild.ps1 index 197a3ca9e900..081417d5190a 100644 --- a/Tasks/MSBuildV1/MSBuild.ps1 +++ b/Tasks/MSBuildV1/MSBuild.ps1 @@ -4,7 +4,6 @@ param() Trace-VstsEnteringInvocation $MyInvocation $msbuildTelemetry = [PSCustomObject]@{ MSBuildVersion = "" - MSBuildArguments = "" MSBuildLocationMethod = "" Platform = "" Configuration = "" @@ -37,7 +36,6 @@ try { [string]$msBuildArchitecture = Get-VstsInput -Name MSBuildArchitecture $msbuildTelemetry.MSBuildVersion = "$msBuildVersion" - $msbuildTelemetry.MSBuildArguments = "$msBuildArguments" $msbuildTelemetry.MSBuildLocationMethod = "$msBuildLocationMethod" $msbuildTelemetry.Platform = "$platform" $msbuildTelemetry.Configuration = "$configuration" diff --git a/Tasks/MSBuildV1/msbuild.ts b/Tasks/MSBuildV1/msbuild.ts index f2c7fd6717be..57abf4dc1e67 100644 --- a/Tasks/MSBuildV1/msbuild.ts +++ b/Tasks/MSBuildV1/msbuild.ts @@ -19,7 +19,6 @@ async function run() { // pass inputs to telemetry object telemetry.configuration = configuration; telemetry.platform = platform; - telemetry.msBuildArguments = msbuildArguments; let logsolutionEvents: boolean = tl.getBoolInput('logsolutionEvents'); if (logsolutionEvents) { diff --git a/Tasks/MSBuildV1/task.json b/Tasks/MSBuildV1/task.json index 1e2f047351ff..ff58465206fd 100644 --- a/Tasks/MSBuildV1/task.json +++ b/Tasks/MSBuildV1/task.json @@ -13,7 +13,7 @@ "version": { "Major": 1, "Minor": 197, - "Patch": 0 + "Patch": 1 }, "demands": [ "msbuild" diff --git a/Tasks/MSBuildV1/task.loc.json b/Tasks/MSBuildV1/task.loc.json index c17f041f1978..fa4f6d17297c 100644 --- a/Tasks/MSBuildV1/task.loc.json +++ b/Tasks/MSBuildV1/task.loc.json @@ -13,7 +13,7 @@ "version": { "Major": 1, "Minor": 197, - "Patch": 0 + "Patch": 1 }, "demands": [ "msbuild" diff --git a/Tasks/MSBuildV1/telemetryHelper.ts b/Tasks/MSBuildV1/telemetryHelper.ts index 7fb7a7df4702..2b613226d108 100644 --- a/Tasks/MSBuildV1/telemetryHelper.ts +++ b/Tasks/MSBuildV1/telemetryHelper.ts @@ -3,7 +3,6 @@ import * as semver from 'semver'; export interface TelemetryPayload { msBuildVersion: string; - msBuildArguments: string; msBuildLocationMethod: string; platform: string; configuration: string; diff --git a/Tasks/VSBuildV1/VSBuild.ps1 b/Tasks/VSBuildV1/VSBuild.ps1 index 9b07456004ba..0d1b583dc963 100644 --- a/Tasks/VSBuildV1/VSBuild.ps1 +++ b/Tasks/VSBuildV1/VSBuild.ps1 @@ -4,7 +4,6 @@ param() Trace-VstsEnteringInvocation $MyInvocation $vsBuildTelemetry = [PSCustomObject]@{ VsVersion = "" - MSBuildArguments = "" CustomVersion = "" Platform = "" Configuration = "" @@ -55,7 +54,6 @@ try { } $vsBuildTelemetry.VsVersion = "$vsVersion" - $vsBuildTelemetry.MSBuildArguments = "$msBuildArgs" $vsBuildTelemetry.CustomVersion = "$customVersion" $vsBuildTelemetry.Platform = "$platform" $vsBuildTelemetry.Configuration = "$configuration" diff --git a/Tasks/VSBuildV1/task.json b/Tasks/VSBuildV1/task.json index b04e47f132eb..ceefe2e22f33 100644 --- a/Tasks/VSBuildV1/task.json +++ b/Tasks/VSBuildV1/task.json @@ -13,7 +13,7 @@ "version": { "Major": 1, "Minor": 197, - "Patch": 0 + "Patch": 1 }, "demands": [ "msbuild", diff --git a/Tasks/VSBuildV1/task.loc.json b/Tasks/VSBuildV1/task.loc.json index d6324c507f8c..e59c9f0dcbf5 100644 --- a/Tasks/VSBuildV1/task.loc.json +++ b/Tasks/VSBuildV1/task.loc.json @@ -13,7 +13,7 @@ "version": { "Major": 1, "Minor": 197, - "Patch": 0 + "Patch": 1 }, "demands": [ "msbuild",