12 references to MSBuildApp
Microsoft.DotNet.Cli.Utils (1)
MSBuildForwardingAppWithoutLogging.cs (1)
159return 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)
33/// <returns>A value of type <see cref="MSBuildApp.ExitType"/> that indicates whether the build succeeded, 38public static MSBuildApp.ExitType Execute(string[] commandLineArgs, CancellationToken cancellationToken) 57/// <returns>A value of type <see cref="MSBuildApp.ExitType"/> that indicates whether the build succeeded, 59public static MSBuildApp.ExitType Execute(string[] commandLineArgs, string msbuildLocation, CancellationToken cancellationToken) 86return MSBuildApp.Execute(commandLineArgs); 90Enum.TryParse(exitResult.MSBuildAppExitTypeString, out MSBuildApp.ExitType MSBuildAppExitType)) 97return MSBuildApp.ExitType.MSBuildClientFailure;
XMake.cs (2)
163s_exePath = Path.GetDirectoryName(typeof(MSBuildApp).GetAssemblyPath()); 2557return terminalLoggerParameters?.Length > 0 ? MSBuildApp.AggregateParameters(string.Empty, terminalLoggerParameters) : string.Empty;