| File: Program.cs | Web Access |
| Project: src\aspnetcore\src\Tools\dotnet-getdocument\src\dotnet-getdocument.csproj (dotnet-getdocument) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.ApiDescription.Tool.Commands; using Microsoft.Extensions.Tools.Internal; namespace Microsoft.Extensions.ApiDescription.Tool; internal sealed class Program : ProgramBase { public Program(IConsole console) : base(console) { } private static int Main(string[] args) { DebugHelper.HandleDebugSwitch(ref args); var console = GetConsole(); return new Program(console).Run(args, new InvokeCommand(console), throwOnUnexpectedArg: false); } }