Is there a way to configure a Visual Studio 2005 Web Deployment Project to install an application into a named Application Pool rather than the default app pool for a given web site?
|
1
|
|
|
|
|
|
There is a good article describing custom actions here: ScottGu's Blog The question you asked is answered about halfway through the comments by 'Ryan', unfortunately it's in VB, but it shouldn't be hard to translate:
...Where APPPOOL is supplied as an argument in the Custom Action. Hope that helps! |
||
|
|
|
|
You can use a CustomAction to modify IIS during deployment, Here is an article how to do it: Modifying Internet Information Services During Deployment with Custom Actions The example in the article is in VB.Net, and does not show explicitly how to change the Application Pool, but it should be easy to figure it out. |
||
|
|
