23 lines
818 B
C#
23 lines
818 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNetCore.Internal;
|
|
|
|
namespace Templates.Test.Helpers
|
|
{
|
|
internal static class ErrorMessages
|
|
{
|
|
public static string GetFailedProcessMessage(string step, Project project, ProcessEx processResult)
|
|
{
|
|
return $@"Project {project.ProjectArguments} failed to {step}.
|
|
{processResult.GetFormattedOutput()}";
|
|
}
|
|
|
|
public static string GetFailedProcessMessageOrEmpty(string step, Project project, ProcessEx processResult)
|
|
{
|
|
return processResult.HasExited ? $@"Project {project.ProjectArguments} failed to {step}.
|
|
{processResult.GetFormattedOutput()}" : "";
|
|
}
|
|
}
|
|
}
|