The problem with starting a new project is there is a lot of boilerplate work to get started. You need to setup project structure, source control, build and release pipelines, dependency injection and logging before you write a line of business code. Dotnet Core 2.0 supports custom templates meaningless boilerplate code to hit the ground running.
To test creating custom templates I built one for a common app type - C# Web API backend for a single page application. It can be found https://github.com/glenhallworth/WebApiWithSpa. I've made it generic including several libraries setup how I like and have left the flexible pieces to be added; such as authentication.
The templates are distributed using NuGet so it's incredibly easy to use. To get the above template up and running its just two commands:
- Install the template from NuGet: dotnet new -i WebApiWithSpa.Template.CSharp
- Create the project: dotnet new WebApiWithSpa