Issue: When trying to create a Visual Studio solution on VMWARE VM running on a Mac you get the following error:
IISExpress 8 Cannot read configuration file redirection.config
This thread provides some insight into the issue.
What's the problem?
When creating a new web solution, VS checks all the IIS config files. The process fails if it can't access it.
Solution:
Turns out that VMWARE will map your host's Documents directory to Window's Documents directory. This means that VS cannot access the files.
Steps:
- Turn off sharing the 
Documentsdirectory on the host. - Copy the Directory 
C:\Program Files\IIS Express. - Paste it into 
%userprofile%\Documents - Restart Visual Studio.
 
    
Top comments (0)