7 references to Success
MSBuild (7)
XMake.cs (7)
338
exitCode = ((s_initialized && MSBuildClientApp.Execute(args, multiThreaded, s_buildCancellationSource.Token) == ExitType.
Success
) ? 0 : 1);
345
exitCode = ((s_initialized && Execute(args, switchesFromAutoResponseFile, switchesNotFromAutoResponseFile) == ExitType.
Success
) ? 0 : 1);
793
ExitType exitType = ExitType.
Success
;
994
collection.LogBuildFinishedEvent(exitType == ExitType.
Success
);
1296
return ExitType.
Success
;
1306
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3191
exitCode = exitType == ExitType.
Success
? 0 : 1;