/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/tools/HelixTestRunner/ProcessResult.cs
18 строк
519 B
Tanay Parikh
Helix Restore Issue Mitigation (#41311)
30 апр 2022, 04:31
Не верифицирован
30 апр 2022, 04:31
0be2c29
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace HelixTestRunner; public class ProcessResult { public ProcessResult(string standardOutput, string standardError, int exitCode) { StandardOutput = standardOutput; StandardError = standardError; ExitCode = exitCode; } public string StandardOutput { get; } public string StandardError { get; } public int ExitCode { get; } }