How to distinguish Web apps vs Win apps
.NET (Core and Framework)
2
Posts
2
Posters
0
Views
1
Watching
-
Is there some way to tell from within an assembly whether an app is running as a Web app or a Windows app? Chen Venkataraman
-
Is there some way to tell from within an assembly whether an app is running as a Web app or a Windows app? Chen Venkataraman
I don't exactly understand ur question. All web projects has to use the system.web namespace to run as a web app. U can use Ildasm.exe provided by .net framework and check its mainfest if u see something like .assembly extern System.Web u can know that it is supposed to be deployed as a web app else win app. cool man