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)
280
s_buildCancellationSource.Token) == ExitType.
Success
) ? 0 : 1);
291
== ExitType.
Success
) ? 0 : 1);
671
ExitType exitType = ExitType.
Success
;
851
collection.LogBuildFinishedEvent(exitType == ExitType.
Success
);
1103
return ExitType.
Success
;
1113
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3441
exitCode = exitType == ExitType.
Success
? 0 : 1;