13 references to MSBuildApp
Microsoft.DotNet.Cli.Utils (2)
MSBuildForwardingAppWithoutLogging.cs (2)
201
/// Directly executes MSBuild's <see cref="Build.CommandLine.
MSBuildApp
.Main"/> method in the current process.
221
return Build.CommandLine.
MSBuildApp
.Main(arguments);
MSBuild (11)
CommandLine\CommandLineParser.cs (2)
120
string exePath = Path.GetDirectoryName(typeof(
MSBuildApp
).GetAssemblyPath()); // Copied from XMake
535
string exePath = Path.GetDirectoryName(typeof(
MSBuildApp
).GetAssemblyPath()); // Copied from XMake
MSBuildClientApp.cs (7)
34
/// <returns>A value of type <see cref="
MSBuildApp
.ExitType"/> that indicates whether the build succeeded,
39
public static
MSBuildApp
.ExitType Execute(string[] commandLineArgs, bool multiThreaded, CancellationToken cancellationToken)
60
/// <returns>A value of type <see cref="
MSBuildApp
.ExitType"/> that indicates whether the build succeeded,
62
public static
MSBuildApp
.ExitType Execute(string[] commandLineArgs, string msbuildLocation, bool multiThreaded, CancellationToken cancellationToken)
89
return
MSBuildApp
.Execute(commandLineArgs);
93
Enum.TryParse(exitResult.MSBuildAppExitTypeString, out
MSBuildApp
.ExitType MSBuildAppExitType))
100
return
MSBuildApp
.ExitType.MSBuildClientFailure;
XMake.cs (2)
163
s_exePath = Path.GetDirectoryName(typeof(
MSBuildApp
).GetAssemblyPath());
2710
return terminalLoggerParameters?.Length > 0 ?
MSBuildApp
.AggregateParameters(string.Empty, terminalLoggerParameters) : string.Empty;