Reputation: 133
I have looked to see if I can find a "compile" button in VS2010 but can not find one. I do have a build, buildwebsite, and rebuildwebsite button. Does a build do the same thing as compile in VS2010?
Upvotes: 0
Views: 353
Reputation: 258628
Yes, building means compiling in VS.
You can also use Ctrl+Shift+B
to build.
Rebuild basically means clean + compile.
Upvotes: 1