I have a utilities package on #NuGet that I probably ought to write examples for. Should my example project be MVC or Web API or a CLI app? Presumably it ought to run? #dotnet
@devlord CLI would have the lowest barrier to entry, I would imagine... No setup.
GitHub - patriksvensson/dotnet-example: A dotnet tool to list and run examples

A dotnet tool to list and run examples. Contribute to patriksvensson/dotnet-example development by creating an account on GitHub.

GitHub
@devlord I don’t know what your utilities package has in it (or what type of project it is typically used with), but I’d make the example as simple as possible so that the focus is on the classes in your package. Assuming your package is general purpose and not specific to a certain project type, I’d make the examples a CLI.