66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.DotNet.Cli;
|
|
using Microsoft.DotNet.Cli.CommandLine;
|
|
using System.Diagnostics;
|
|
using Microsoft.DotNet.Cli.Utils;
|
|
|
|
namespace Microsoft.DotNet.Tools.MSBuild
|
|
{
|
|
public class MSBuildForwardingApp
|
|
{
|
|
internal const string TelemetrySessionIdEnvironmentVariableName = "DOTNET_CLI_TELEMETRY_SESSIONID";
|
|
|
|
private MSBuildForwardingAppWithoutLogging _forwardingAppWithoutLogging;
|
|
|
|
private static IEnumerable<string> ConcatTelemetryLogger(IEnumerable<string> argsToForward)
|
|
{
|
|
if (Telemetry.CurrentSessionId != null)
|
|
{
|
|
try
|
|
{
|
|
Type loggerType = typeof(MSBuildLogger);
|
|
|
|
return argsToForward
|
|
.Concat(new[]
|
|
{
|
|
$"/Logger:{loggerType.FullName},{loggerType.GetTypeInfo().Assembly.Location}"
|
|
});
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// Exceptions during telemetry shouldn't cause anything else to fail
|
|
}
|
|
}
|
|
return argsToForward;
|
|
}
|
|
|
|
public MSBuildForwardingApp(IEnumerable<string> argsToForward, string msbuildPath = null)
|
|
{
|
|
_forwardingAppWithoutLogging = new MSBuildForwardingAppWithoutLogging(
|
|
ConcatTelemetryLogger(argsToForward),
|
|
msbuildPath);
|
|
}
|
|
|
|
public ProcessStartInfo GetProcessStartInfo()
|
|
{
|
|
var ret = _forwardingAppWithoutLogging.GetProcessStartInfo();
|
|
|
|
ret.Environment[TelemetrySessionIdEnvironmentVariableName] = Telemetry.CurrentSessionId;
|
|
|
|
return ret;
|
|
}
|
|
|
|
public int Execute()
|
|
{
|
|
return GetProcessStartInfo().Execute();
|
|
}
|
|
}
|
|
}
|