11 references to Success
Microsoft.Build.CommandLine.UnitTests (3)
XMake_Tests.cs (3)
566
.ShouldBe(MSBuildApp.ExitType.
Success
);
1145
MSBuildApp.Execute(@"c:\bin\msbuild.exe " + quotedProjectFileName).ShouldBe(MSBuildApp.ExitType.
Success
);
1179
MSBuildApp.Execute(@$"c:\bin\msbuild.exe /logger:FileLogger,""Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"";""LogFile={logFile}"" /verbosity:detailed " + quotedProjectFileName).ShouldBe(MSBuildApp.ExitType.
Success
);
Microsoft.Build.Engine.UnitTests (1)
Utilities_Tests.cs (1)
85
.ShouldBe(MSBuildApp.ExitType.
Success
);
MSBuild (7)
XMake.cs (7)
266
exitCode = (s_initialized && MSBuildClientApp.Execute(Environment.CommandLine, s_buildCancellationSource.Token) == ExitType.
Success
) ? 0 : 1;
271
exitCode = (s_initialized && Execute(Environment.CommandLine) == ExitType.
Success
) ? 0 : 1;
595
ExitType exitType = ExitType.
Success
;
775
collection.LogBuildFinishedEvent(exitType == ExitType.
Success
);
1035
return ExitType.
Success
;
1045
exitType = exitType == ExitType.
Success
&& (logger as SimpleErrorLogger).HasLoggedErrors ? ExitType.BuildError : exitType;
3431
exitCode = exitType == ExitType.
Success
? 0 : 1;