20 references to MSBuildApp
Microsoft.DotNet.Cli.Utils (1)
MSBuildForwardingAppWithoutLogging.cs (1)
214
return Build.CommandLine.
MSBuildApp
.Main(arguments);
MSBuild (19)
CommandLine\CommandLineParser.cs (4)
120
string exePath = Path.GetDirectoryName(typeof(
MSBuildApp
).GetAssemblyPath()); // Copied from XMake
540
string exePath = Path.GetDirectoryName(typeof(
MSBuildApp
).GetAssemblyPath()); // Copied from XMake
561
projectFile =
MSBuildApp
.ResolveProjectPathAgainstLogicalCurrentDirectory(projectFile);
575
return
MSBuildApp
.ResolveProjectPathAgainstLogicalCurrentDirectory(projectDirectory);
MSBuildClientApp.cs (13)
41
public static
MSBuildApp
.ExitType Execute(string[] commandLineArgs, bool multiThreaded, bool shutdownServerAfterBuild, CancellationToken cancellationToken)
67
public static
MSBuildApp
.ExitType Execute(string[] commandLineArgs, string msbuildLocation, bool multiThreaded, bool shutdownServerAfterBuild, CancellationToken cancellationToken)
85
MSBuildApp
.ServerNotUsedReason reason = GetServerFallbackReason(exitResult);
86
MSBuildApp
.s_serverNotUsed = reason;
99
return
MSBuildApp
.Execute(commandLineArgs);
103
Enum.TryParse(exitResult.MSBuildAppExitTypeString, out
MSBuildApp
.ExitType MSBuildAppExitType))
110
return
MSBuildApp
.ExitType.MSBuildClientFailure;
120
private static
MSBuildApp
.ServerNotUsedReason GetServerFallbackReason(MSBuildClientExitResult exitResult)
126
MSBuildApp
.ServerNotUsedReasonCodeServerBusy),
129
MSBuildApp
.ServerNotUsedReasonCodeServerCrashed),
132
MSBuildApp
.ServerNotUsedReasonCodeServerStateUnknown),
137
MSBuildApp
.ServerNotUsedReasonCodeServerCrashed),
143
MSBuildApp
.ServerNotUsedReasonCodeServerUnreachable),
XMake.cs (2)
164
s_exePath = Path.GetDirectoryName(typeof(
MSBuildApp
).GetAssemblyPath());
2965
return terminalLoggerParameters?.Length > 0 ?
MSBuildApp
.AggregateParameters(string.Empty, terminalLoggerParameters) : string.Empty;