File: Microsoft\Tools\ServiceModel\SvcUtil\ToolExitCodes.cs | Web Access |
Project: src\src\svcutilcore\src\dotnet-svcutil.xmlserializer.csproj (dotnet-svcutil.xmlserializer) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.Tools.ServiceModel.SvcUtil.XmlSerializer { internal enum ToolExitCodes : int { Success = 0, ValidationError = 1, ArgumentError = 2, InputError = 3, RuntimeError = 4, Unknown = 9 } } |