solution task’s webmap element has case sensitivity and EntityName parsing bugs
The solution task was failing with a 403 error looking up webmap map entries until the casing on the url was matched to the casing in the solution file (.sln). Since the solution file’s casing is arbitrary (whatever you typed in when you added the project), this isn’t the right behavior.
Error checking whether 'http://localhost/virtualdirectory/root.csproj' is an enterprise template project.
The remote server returned an error: (403) Forbidden.
A second bug appears to be Microsoft’s, a .csproj <File> element with a RelPath attribute value containing an ampersand causes a NAnt solution task error of
An error occurred while parsing EntityName.
The ampersand should have been converted to an entity reference of &. That makes NAnt happy, but breaks Visual Studio. We’re not quite all there yet with XML are we….
Comments
This helped me out a lot. I was having the same problem and this informtion helped fix it. Thanks! Brandon
Posted by: Brandon | May 14, 2004 07:23 PM
Thanks, As didn't know that webmap was case sensitive.
Posted by: Ra | June 8, 2004 05:23 PM