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. 221return Build.CommandLine.MSBuildApp.Main(arguments);
MSBuild (11)
CommandLine\CommandLineParser.cs (2)
120string exePath = Path.GetDirectoryName(typeof(MSBuildApp).GetAssemblyPath()); // Copied from XMake 535string 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, 39public 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, 62public static MSBuildApp.ExitType Execute(string[] commandLineArgs, string msbuildLocation, bool multiThreaded, CancellationToken cancellationToken) 89return MSBuildApp.Execute(commandLineArgs); 93Enum.TryParse(exitResult.MSBuildAppExitTypeString, out MSBuildApp.ExitType MSBuildAppExitType)) 100return MSBuildApp.ExitType.MSBuildClientFailure;
XMake.cs (2)
163s_exePath = Path.GetDirectoryName(typeof(MSBuildApp).GetAssemblyPath()); 2710return terminalLoggerParameters?.Length > 0 ? MSBuildApp.AggregateParameters(string.Empty, terminalLoggerParameters) : string.Empty;