Answers
- A method calledÂ
Main
 in theÂProgram
 class is the entry point method in an ASP.NET Core app. - A file calledÂ
index.html
 is the single HTML page filename. This is located in theÂpublic
 folder, which can be found in theÂClientApp
 folder. - The React app dependencies are defined in a file called
package.json
in theÂClientApp
 folder. npm start
is the command that will run the React app in the WebPack development server.npm run build
is the command that builds the React app so that it's ready for production.- The
render
method renders a React class component. - Authentication will be invoked first in the request/response pipeline.
- We can give the
Startup
class a different name by defining this class inÂIHostBuilder
, as shown in the following example:public static IHostBuilder CreateHostBuilder(string[] args) => Â Â Host.CreateDefaultBuilder(args) Â Â ...