Create new custom project on specified template using .NET Core
Description: We will try to create new project template like “console”, “web” using .Net Core. Use case: You have to write same code in multiple solution files then create project template of that code and reuse everywhere. Prerequisite: Install dotnet core 2.0.0+ SDK from https://www.microsoft.com/net/download/core Nuget exe Steps to create project template Create class library project and add your custom logic in it. Need to add template.json file with template confiurationThe template.json file is placed in a .template.config folder in the root directory of the class library. The file provides configuration information to the template engine. The minimum configuration requires the members shown in the following table, which is sufficient to create a functional template. { "$schema": "http://json.schemastore.org/template", "author": "Rahul Jadhav", "classifications": [ "Cusotm", ...