Fundamentals
ASP.NET Core apps created with the web templates contain the application startup code in the Program.cs
file. A file where:
Services required by the app are configured.
The app's request handling pipeline is defined as a series of middleware components.
Program.cs
Last updated
Was this helpful?