Today’s tip is for all of you who want to share the same web.config among all developers in a project so you can check-in and handle changes in your Source Code Control Repository.
EPiServer installation directory and web.config
You might have noticed that the default installation path is different on 32-bit and 64-bit windows. Either you install EPiServer at “C:\Program Files\EPiServer” or “C:\Program Files (x86)\EPiServer”.
This is an issue if you have developers working on a project with both 32 and 64-bit windows since you have references to EPiServer installation directory in Program Files in your web.config.
But it can be easily solved by using a NTFS junction for developers running x64.
Run CMD Shell as an administrator and run:
cd "C:\Program Files"
mklink /j EPiServer "C:\Program Files (x86)\EPiServer"
-
there’s also this technique http://jarlef.wordpress.com/2009/10/14/tips-sharing-episerver-projects-between-developers/
-
Great tip! I’m still using Windows XP at my current customer. Will try linkd.exe in Windows Server 2003 Resource Kit Tools (http://www.microsoft.com/downloads/details.aspx?FamilyID=9D467A69-57FF-4AE7-96EE-B18C4790CFFD&displaylang=en) as first thing tomorrow!

4 comments
Comments feed for this article
Trackback link: http://blog.fredrikhaglund.se/blog/2009/12/19/episerver-with-developers-on-both-x32-and-x64/trackback/