How to speed up compile in VS 2005 IDE?

  • Thread starter Thread starter ABC
  • Start date Start date
A

ABC

How to speed up compile in VS 2005 IDE?

Our solution have many projects, when I only modified a file, I want only to
compile the modified project, not need to compile all projects. It spend
time to compile all projects.
 
Than right click on the solution tab in solution explorere and mark all
those projects that has to be compiled. I am not sure if all languages give
the same boxes about that in Visual Studio Net.
 
ABC said:
How to speed up compile in VS 2005 IDE?

Our solution have many projects, when I only modified a file, I want only
to compile the modified project, not need to compile all projects. It
spend time to compile all projects.
What Cor said! Select the entity to be built from Solution Explorer (or
ClassView in C++). Then your Build menu will show either Build <ENTITY NAME>
or Build Selection. Works similarly in C# as well.
 
Back
Top