Wednesday 20 August 2014

Diffrence between Build,Rebuild,Batch Build and Clean and learn Debugging in Visual Studio

Build Solution :-
Builds any assemblies which have changed files. If an assembly has no changes, it won’t be re-built. Also will not delete any intermediate files.
 Rebuild :-
solution will clean and then build the solution from scratch, ignoring anything it’s done before.
 Clean:-
Solution will delete all compiled files (i.e., EXE’s and DLL’s) from the bin/obj directory.

Batch Build:-
to build multiple project configurations all at one time. You can decide, for example, to build every project configuration of a project with one command.


Start Debugging
F5
Stop Debugging
Shift+F5
Restart Debugging
Ctrl+Shift+F5
Step Over
F10
Step Into
F11
Step Out
Shift+F11
Run To Cursor
Ctrl+F10
Set Next Statement
Ctrl+Shift+F10
Set and Toggle Breakpoint
F9
Disable Breakpoint
Ctrl+F9
Immediate Window
Ctrl+Alt+I
Immediate Window Command Mode
Type “>”
Immediate Window Clear Buffer
>cls
Immediate Window Print Value
?varname

No comments:

Post a Comment