yanxu2021 / GobangGame

0 stars 0 forks source link

Creating the projects. #1

Closed yanxu2021 closed 3 years ago

yanxu2021 commented 3 years ago

I am going to start with a minimal ASP.NET project and add the features I requires as they are needed.

yanxu2021 commented 3 years ago

【Yan‘s Note】

  1. Use command line to create the projects: dotnet new globaljson/dotnet new web/dotnet new sln
  2. Creating the application project folders.
  3. Preparing the application services and the request pipeline. The Startup class is responsible for configuring the ASP.NET application.
  4. Configuring the Razor View Engine. The razor view engine is responsible for processing view files, which have the .cshtml extension, to generate HTML responses.
  5. Creating the controller and view.
  6. Starting the data model.
  7. Checking and running the application.