Hi
If it helps anyone, I have encountered the same error in a different context:
I saw this error when doing a command line build of a .Net solution using devenv.exe. It seems to happen when the solution contains a web application project, but the project's folder hasn't been mapped to a virtual directory (either via IIS or right-clicking the folder and websharing it).
You can see what the virtual dir should be by opening the solution (.sln) file in notepad and looking at the project references at the top. Any web projects should appear something like this:
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyWebProjectFolder", "http://localhost/MyWebProject/MyWebProject.csproj",
It's the bit after /localhost/ that you need to make a note of ("MyWebProject"). This is what you should call the IIS virtual directory, while the web project folder to be mapped is the bit after the equals sign ("MyWebProjectFolder"), and is usually located under c:\inetpub\wwwroot\.
Hope this helps someone else!
Andy
From
http://www.developmentnow.com/g/8_20...understand.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com