Found VS.Net & FileSystemWatcher problem
Like I said, I had a problem with the FileSystemWatcher not picking up the changes that VS.Net was doing.
Justin suggested playing with the NotifyFilter property, and it worked! The issue turned out to be that VS.Net doesn't write to the file, but rather copy a temporary file that it keeps on the side over the file. All I had to do was to add the NotifyFilters.CreationTime and it worked.
I noticed the problem while working with Brail, and I'll commit the stuff tonight. It does mean that to be able to really play with my Castle Demo App, you'll need to use the latest revision of Castle (but that is always a good thing :-) ).
Comments
Comment preview