iis - How to tell what Framework a .Net web application needs to run under? -


we have whole slew of custom written web applications on our company intranet. we've had multiple developers @ 1 time or work on 1 of them. on time have gone newer versions of visual studio well. have applications old never needed recompiled still run on framework version 1.1, under 2, others 3xx. getting error message on iis "it not possible run 2 different versions of asp.net in same iis process" , causes deadlock , hangs server. have separate application pools created each framework version. since there number of apps running in 1 of app pools need isolate app running under wrong framework/app pool. able check each , every .net app see framework version compiled run under not know how tell looking @ compiled dll or config file, .vbproj or .csproj file, or have you. can tell me how might able find information each of apps running on our web server?

you should able see in web.config. not you?

 <compilation debug="true" targetframework="4.5" /> <httpruntime targetframework="4.5" /> 

Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -