When I start my ASP.Net 4.0 web app in debug mode, I'm getting the following exception:
System.Web.HttpException occurred
Message=Invalid file name for file monitoring: 'C:srcmain-232srcNodenode_MultiFrontWebControlsCat5Navigation'. Common reasons for failure include:
- The filename is not a valid Win32 file name.
- The filename is not an absolute path.
- The filename contains wildcard characters.
- The file specified is a directory.
- Access denied.
Source=System.Web
ErrorCode=-2147024809
WebEventCode=0
StackTrace:
at System.Web.DirectoryMonitor.AddFileMonitor(String file)
InnerException:
The thing is, the file this is pointing to IS a directory, so why does Visual Studio 2010 think it's a file? I'm running this on IIS 7 on my local machine
See Question&Answers more detail:os