7 references to Success
MSBuild (7)
XMake.cs (7)
345
exitCode = ((s_initialized && MSBuildClientApp.Execute(args, multiThreaded, shutdownServerAfterBuild, s_buildCancellationSource.Token) == ExitType.
Success
) ? 0 : 1);
366
exitCode = ((s_initialized && Execute(args, switchesFromAutoResponseFile, switchesNotFromAutoResponseFile) == ExitType.
Success
) ? 0 : 1);
866
ExitType exitType = ExitType.
Success
;
1087
collection.LogBuildFinishedEvent(exitType == ExitType.
Success
);
1398
return ExitType.
Success
;
1408
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3432
exitCode = exitType == ExitType.
Success
? 0 : 1;