I have a project with about 1000 classes in it (no, there is no way to conveniently break this project into multiples). Just loading the project takes about 20 minutes as intellisense slowly chugs through all the classes, and eats almost 1gb of memory. Is there a way to turn off Intellisense for a single project, but keep it for all other projects in the solution?
相关问题
- the application was unable to start correctly 0xc0
- Change Maven-driven project based on Vaadin 11 to
- Project Build gets Skipped in VS2008 after convers
- Index was out of range. Must be non-negative and l
- How to decide what is the .Net target
相关文章
- How to add external file to application files ( cl
- Visual Studio 2015 JSX/ES2015 syntax highlighting
- Understanding the difference between Collection.is
- Code completion is not working for OpenCV and Pyth
- Get size of Bitmap Android [duplicate]
- Visual Studio Solution — Any way to create a “spec
- Defining the size of an array using a const int
- React/RCTBridgeDelegate.h' file not found
What language is the project in? 1000 classes is quite a small project and should load in no more than 20 seconds. The problem is more likely to be caused by special files in the project that have compile time transforms run on them (eg. code generators). Do you have any code generators running as part of the build?
The problem could also be caused by:
Discussion continues on this thread
The problem is almost certainly not related to Intellisense. There are at least a few things you can try:
bin
andobj
folders.After those steps, restart Visual Studio, open your project again and see if you get better performance.