-
When I run
As I know, an ASP.NET Core application is a standard console application that set up a HTTP Server (I suppose that it is achieved using TCP sockets listening for HTTP messages, but I don't know). If ASP.NET Core application is a console application, why exists a special runtime for ASP.NET Applications? Can I run ASP.NET applications without installing it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
It the a set of assemblies that version together that make up asp.net. That's all a shared framework is. It also ships in the box with .net so you always have it. Can you build a console app that uses asp.net? Yes, and you do it by adding a framework reference to Microsoft.AspNetCore.App |
Beta Was this translation helpful? Give feedback.
It the a set of assemblies that version together that make up asp.net. That's all a shared framework is. It also ships in the box with .net so you always have it. Can you build a console app that uses asp.net? Yes, and you do it by adding a framework reference to Microsoft.AspNetCore.App