1 write to ExitCode
Microsoft.Arcade.Common (1)
CommandResult.cs (1)
22
ExitCode
= exitCode;
6 references to ExitCode
Microsoft.Arcade.Common (2)
CommandResult.cs (2)
29
if (
ExitCode
!= 0)
31
StringBuilder message = new StringBuilder($"Command failed with exit code {
ExitCode
}: {StartInfo.FileName} {StartInfo.Arguments}");
Microsoft.DotNet.Helix.Sdk (2)
InstallDotNetTool.cs (2)
171
if (result.
ExitCode
!= 0)
174
$"Failed to install the dotnet tool. Installation exited with {result.
ExitCode
}. " +
Microsoft.DotNet.VersionTools (2)
Util\GitCommand.cs (2)
57
var message = $"{logMessage} exited with exit code {pushResult.
ExitCode
}";
58
if (pushResult.
ExitCode
== 0)