File: ExitCodeConstants.cs
Web Access
Project: src\src\Aspire.Cli\Aspire.Cli.csproj (aspire)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Aspire.Cli;
 
internal static class ExitCodeConstants
{
    public const int Success = 0;
    public const int InvalidCommand = 1;
    public const int FailedToDotnetRunAppHost = 2;
    public const int FailedToInstallTemplates = 3;
    public const int FailedToCreateNewProject = 4;
}