Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

compile a single class/file in visual studio

I just want to know if we can compile a single file/class in visual studio.I often change just a single file but end up compiling the entire project.THis might be a trivial case but will be very helpful:) I am using visual studio 2005 working on C# project in .net 2.0

like image 273
Ravisha Avatar asked Feb 25 '10 06:02

Ravisha


People also ask

How do I compile a class in Visual Studio?

Ctrl+F7 will compile only the active source file. Look for the Compile item at the bottom of the Build menu. Of course, you'll still have to do a build before you can test, but if you just want a quick sanity check after modifying a source file, this can be handy.

How do I compile a .CS file?

Open the command prompt tool and go to the directory where you saved the file. Type csc helloworld. cs and press enter to compile your code. If there are no errors in your code, the command prompt takes you to the next line and generates helloworld.exe executable file.


1 Answers

Ctrl+F7 will compile only the active source file.

Look for the Compile item at the bottom of the Build menu.

Of course, you'll still have to do a build before you can test, but if you just want a quick sanity check after modifying a source file, this can be handy.

like image 177
Scott Smith Avatar answered Sep 22 '22 00:09

Scott Smith