vote up 0 vote down star

I recently had a problem with the Issue Tracker starter kit that seemed to be resolved by using the "build" option. Previously, I would typically use the "play" button to debug my app, then just stage the files when everything was working, assuming that the last time I hit the "play" button, it had fully compiled the app.

Anyhow, I'm wondering if there's a difference between the "play" button and the "build" menu option? if so, what are the differences?

flag

80% accept rate

3 Answers

vote up 3 vote down check

The "build" button compiles your website while the "play" button builds and fires up a browser with the default page as an argument.

The "play" button is designed to execute a assembly that is designated in your solution as a starting point. Since an ASP.NET website has no true "entry point" (like static void Main() in a console application) the "play" button simulates a similar action by opening the browser to your projects "start page".

link|flag
But hitting "play" compiles the application first, so it seems like the behavior is exactly the same, except that the play button also loads a browser. As far as the compile step of the process, they're doing exactly the same thing, right? – rwmnau Mar 26 at 21:27
@rwmnau: You are 100% correct :) – Andrew Hare Mar 26 at 21:36
vote up 0 vote down

The downside of "play" with a WebSite project is that you might miss a compiler error if the offending code is outside of the App_Code directory and you don't ever load the code that contains the error. I think doing a "build" does catch those kinds of errors.

Another gotcha to watch out for--if there are additional projects (such as class libraries) within the solution, make sure that the dependencies are set up correctly in the Configuration Manager so that those projects are built before "playing" the site. Otherwise you could make a change in the class library and then "play" the site but not see the change.

link|flag
vote up 1 vote down

Play button (F5) executes your application in debug mode.

Build menu is only compiles and produces your assemblies.

And one another option, CTRL + F5, it runs your application but not in debug mode.

link|flag
+1 Good point about "debug mode" - I forgot about that! – Andrew Hare Mar 26 at 20:15
yes, I just wanted to add :) – Canavar Mar 26 at 20:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.