Compiling single page in VS.NET

  • Thread starter Thread starter SS
  • Start date Start date
S

SS

Hi,

How can I compile only the page/class that I am currently working on in
VS.NET and not the entire project?.

Thx

Sal
 
Sal,

You can't. A compilation is an assembly of all the classes within your
project, hence the entire project needs to be compiled.

Alex
 
Ctrl + F7 works for me; I can't remember if I set that up or it's default.
If it doesn't work go to the Options, find the Keyboard page and pick a
shortcut for Build.Compile.

This certainly works for C# and C++, probably VB too.

Steve
 
Back
Top