Build a .NET Core Cli Tool
See original GitHub issueIt would be nice if this package could be published as a .NET Core Cli Tool.
An advantage would be, that one could simply add <DotNetCliToolReference Include="TypeGen" Version="1.6.0" />
to the *.csproj file and after restoring run dotnet TypeGen
. Global install of the tool would then also be supported by dotnet tool install -g TypeGen
.
Since there is already a TypeGen Cli it maybe wouldn’t need much work.
Issue Analytics
- State:
- Created 5 years ago
- Comments:19 (19 by maintainers)
Top Results From Across the Web
Tutorial: Create a .NET tool using the .NET CLI
The .NET CLI lets you create a console application as a tool, which others can install and run. .NET tools are NuGet packages...
Read more >Build a Command Line Interface(CLI) Program with .NET ...
Step-by-Step Guide to Creating CLI Tools in .NET Core. Photo by Goran Ivos on Unsplash ... NET Core is not the only option...
Read more >.NET Core Command-line Interface
NET Core command-line interface (CLI) is a new cross-platform tool for creating, restoring packages, building, running and publishing .NET applications.
Read more >Create your own .NET CLI tool
This will create tool manifest file dotnet-tools.json in the .config subfolder under the main folder. Then invoke this command: > dotnet tool ......
Read more >Creating .NET Core Applications using Command-Line Tools
Learn how to create modern .NET Core applications using Command-Line tools in this simple to follow programming tutorial.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I made a new NuGet package with some changes:
dotnet\shared
folder, searching andAssembly.LoadFile
)C:\Program Files\dotnet\sdk\NuGetFallbackFolder
). May help with some other dependency issues.This is a good idea and indeed sounds like maybe not that much work to do. I’ll read up on how to do this and update here when I have a solution. Thanks for posting!