Visual Studio Play or Build to compile. - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T12:37:58Zhttp://stackoverflow.com/feeds/question/687381http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/687381/visual-studio-play-or-build-to-compile0Visual Studio Play or Build to compile.madcolor2009-03-26T20:08:20Z2009-03-26T21:19:43Z
<p>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. </p>
<p>Anyhow, I'm wondering if there's a difference between the "play" button and the "build" menu option? if so, what are the differences?</p>
http://stackoverflow.com/questions/687381/visual-studio-play-or-build-to-compile/687396#6873963Answer by Andrew Hare for Visual Studio Play or Build to compile.Andrew Hare2009-03-26T20:11:21Z2009-03-26T20:11:21Z<p>The "build" button compiles your website while the "play" button builds and fires up a browser with the default page as an argument.</p>
<p>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 <code>static void Main()</code> in a console application) the "play" button simulates a similar action by opening the browser to your projects "start page".</p>
http://stackoverflow.com/questions/687381/visual-studio-play-or-build-to-compile/687410#6874101Answer by Canavar for Visual Studio Play or Build to compile.Canavar2009-03-26T20:15:02Z2009-03-26T20:15:02Z<p>Play button (F5) executes your application in debug mode. </p>
<p>Build menu is only compiles and produces your assemblies.</p>
<p>And one another option, CTRL + F5, it runs your application but not in debug mode.</p>
http://stackoverflow.com/questions/687381/visual-studio-play-or-build-to-compile/687583#6875830Answer by ranomore for Visual Studio Play or Build to compile.ranomore2009-03-26T21:19:43Z2009-03-26T21:19:43Z<p>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.</p>
<p>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.</p>