what is startup.cs file in .net core
In .NET Core, the Startup class is the entry point for configuring the application's request pipelines and services. The Startup class is named by convention, and the Startup process is when the Program class launches the Startup class and initializes the application.
what is startup.cs file in .net core
cs file now often contains the configuration code that you would traditionally put in Startup. cs . It's where you create the host for the web application and can configure services and the app pipeline. This is where you could set up OAuth and other middleware
No comments:
Post a Comment