March 2016
Intermediate to advanced
550 pages
10h 57m
English
Now, let's make a simple ASP.NET Core web application.
You will enter some commands in the Terminal prompt to:
HelloWeb and move into itstartup.cs and project.jsonHere are the commands to enter:
cd ~ mkdir HelloWeb cd HelloWeb touch startup.cs touch project.json code .
In Visual Studio Code, click on the startup.cs file on the left-hand side and then enter these statements:
using Microsoft.AspNet.Builder; using Microsoft.Extensions.Logging; namespace HelloWeb { public class Startup { public void Configure(IApplicationBuilder ...Read now
Unlock full access