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