Project Setup and Hosting Mode in DotNet Core
ASP.NET Core is the framework that can be used for web development with .NET. If you have any experience with MVC or Web API over the last few years. Let's discuss how to create a new project in Visual Studio 2017. To start with Dot net core project just add a new project from VS2017 and select empty project option. Select application type as per your requirement here I am selecting empty application. Your project is created and available in solution explorer and physical location as well. For me it’s available in F drive of my system. Here you will see few files which comes by default while creating a dotnet core application. These files are code files having default name Program and Startup. Here one more default file (launchsettings.json) is created which have IIS settings and profile information of your application. Dotnet core application have two type of hosting one is In-Process and second ...