currently the console app is not being published as a dotnet tool, which is limiting for multiple reasons: - can't be installed quickly outside of a project like `dotnet tool install -g ApiDoctor` - can't run on linux based OSes TODO: - [ ] add the below xml entries to the console app csproj - [ ] update the pipeline to publish that second package ```xml <PackAsTool>true</PackAsTool> <ToolCommandName>APIDoctor</ToolCommandName> ``` context https://github.com/microsoftgraph/microsoft-graph-devx-api/pull/806