11 references to Success
Microsoft.Build.CommandLine.UnitTests (3)
XMake_Tests.cs (3)
550
.ShouldBe(MSBuildApp.ExitType.
Success
);
1210
MSBuildApp.Execute([@"c:\bin\msbuild.exe", quotedProjectFileName]).ShouldBe(MSBuildApp.ExitType.
Success
);
1250
.ShouldBe(MSBuildApp.ExitType.
Success
);
Microsoft.Build.Engine.UnitTests (1)
Utilities_Tests.cs (1)
84
MSBuildApp.ExitType.
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
);
1137
return ExitType.
Success
;
1147
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3025
exitCode = exitType == ExitType.
Success
? 0 : 1;