7 references to Success
MSBuild (7)
XMake.cs (7)
322
exitCode = ((s_initialized && MSBuildClientApp.Execute(args, s_buildCancellationSource.Token) == ExitType.
Success
) ? 0 : 1);
327
exitCode = ((s_initialized && Execute(args) == ExitType.
Success
) ? 0 : 1);
665
ExitType exitType = ExitType.
Success
;
842
collection.LogBuildFinishedEvent(exitType == ExitType.
Success
);
1142
return ExitType.
Success
;
1152
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3038
exitCode = exitType == ExitType.
Success
? 0 : 1;