tags:

views:

334

answers:

1

I maintain several subversion development branches on my development pc and build box.

How do you guys deal with opening a solution on one branch and having IIS get configured to that location. Then opening the same solution / project in a different branch / location and get "IIS Url Already Mapped to Different Location" ?

+1  A: 
  1. I added localhost.branch to my host file
  2. In IIS I created a new website mapped to host header localhost.branch.
  3. I searched and replaced <IISUrl>http://localhost/myapp&lt;/IISUrl&amp;gt; with <IISUrl>http://localhost.branch/myapp&lt;/IISUrl&amp;gt; in all my csproj files in the branch.
Ryu