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