Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

In VS.Net - Functional Difference between Build and Rebuild 1

Status
Not open for further replies.

jetar

Programmer
Oct 16, 2003
49
US
Just like the subject says, In visual studio.net what is the functional difference between the Build command and the Rebuild Command.

Thanks.
 
Build creates the target file specified in your project or the Output box.

Rebuild first removes/cleans up all changes produced by Build, then, it does a Build.

Dimandja
 
project
Devenv Command Line Switches | /build | /clean | /deploy | /rebuild
Specifies the project to build, clean, deploy, or rebuild if you are doing one of these operations to a single project rather than the specified project configuration.

devenv {/build|/rebuild|/deploy|/clean} ConfigName [/project ProjName] SolutionName
Arguments
/build
Builds the project specified by /project ProjName.
/rebuild
Cleans then builds the project specified by /project ProjName.
/deploy
Specifies that the project is deployed after a build or rebuild.
/clean
Cleans all intermediary files and output directories created during a build.


Forms/Controls Resizing/Tabbing
Compare Code
Generate Sort Class in VB
Check To MS)
 
JohnYingling

When coding and testing, which would you recommend? Why?

Dimandja
 
Is it posible to configure VS.NET to rebuild the project when I Run it in debug mode.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top