Problems with very large projects
So far we've had great success with the add-in for visual studio 2003. This is an awesome tool.
However, we have a number of very specialized VB.NET projects that contain over 150 different forms.
The main problem we ran into was that the tool wants to scan every file in the project, and this caused excessive delays. For example, my system took about 30 minutes to scan the controls and source code of this type of project. I also ran into out-of-memory problems several times.
We also found issues related to the fact that we use visual inheritance. We may be able to fix this by going into each of our child forms and adding code to ensure that things don't run while in design mode.
It seems that the main problem could be addressed if we were presented with a list of all files in the project from which we could select only those we wanted to scan. After we had completed work with those, we could uncheck them so they would be ignored from future scans.
Can you give some thoughs on this? We are really in a bind at the moment.
Thanks!