11 references to Success
Microsoft.Build.CommandLine.UnitTests (3)
XMake_Tests.cs (3)
525
.ShouldBe(MSBuildApp.ExitType.
Success
);
1113
MSBuildApp.Execute(new[] { @"c:\bin\msbuild.exe", quotedProjectFileName }).ShouldBe(MSBuildApp.ExitType.
Success
);
1160
}).ShouldBe(MSBuildApp.ExitType.
Success
);
Microsoft.Build.Engine.UnitTests (1)
Utilities_Tests.cs (1)
92
MSBuildApp.ExitType.
Success
,
MSBuild (7)
XMake.cs (7)
282
s_buildCancellationSource.Token) == ExitType.
Success
) ? 0 : 1);
293
== ExitType.
Success
) ? 0 : 1);
674
ExitType exitType = ExitType.
Success
;
857
collection.LogBuildFinishedEvent(exitType == ExitType.
Success
);
1109
return ExitType.
Success
;
1119
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3453
exitCode = exitType == ExitType.
Success
? 0 : 1;