Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 637 Bytes

File metadata and controls

27 lines (15 loc) · 637 Bytes

phase 01 — solution skeleton

prerequisite

phase 00 done.

goal

an asp.net core mvc project starts with dotnet run and shows a page in the browser.

steps you do

  1. dotnet new mvc -n FourthWallCafe.Web (name flexible).
  2. open project in your ide.
  3. run; browse to https://localhost:5xxx (port shown in console).

sanity check

you see the template home page, not a connection error.

common mistakes

  • created web api by accident (no razor views) — you need mvc for this assignment unless instructor says otherwise.

reflection

which folder holds .cshtml files in the template?