How to change the application pool identifier in IIS Express 7.5 for the application in the applicationHost.config file for the perticulat application from the command line.
I need to install the Clr2ClassicAppPool application pool for my application.
I do not want to change the default setting in the applicationhost.config file, the default application pool is set to applicationhost.config below
<applicationDefaults applicationPool="Clr4IntegratedAppPool" />
When I replace ir with the code below, my application works fine.
<applicationDefaults applicationPool="Clr2ClassicAppPool" />
Thanks in advance
source
share