I'm trying to do a web application using Asp.Net Core but I realized don't have the appsettings.json by default file like this project.
Currently, my project is like this:
I need the appsettings.json to put the ConnectionString of the database.
So someone knows why I don't have the appsettings.json file by default? and How I can create this file? another question is what is the appsettings.Development.json file in the first image?
My Program.cs is this
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
}

