Visual Studio Debugging/Building - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T18:21:11Zhttp://stackoverflow.com/feeds/question/794640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/794640/visual-studio-debugging-building0Visual Studio Debugging/BuildingRonnie Overby2009-04-27T18:19:23Z2009-04-27T18:33:39Z
<p>I have a solution that has a plain old asp.net website and a winforms app.</p>
<p>I have the winforms app set as my startup application.</p>
<p>When I press (CTRL+)F5, it just runs the app without building. So, my changes aren't built into the program.</p>
<p>What should I do to fix this?</p>
<h2>EDIT</h2>
<p>I don't want to have to go to the build menu and then debug. I want a single step.</p>
<h2>EDIT 2</h2>
<p>This is VS 2008 SP1</p>
http://stackoverflow.com/questions/794640/visual-studio-debugging-building/794658#7946580Answer by aJ for Visual Studio Debugging/BuildingaJ2009-04-27T18:23:02Z2009-04-27T18:23:02Z<p>Build->Build Solution (press F6)</p>
<p>For direct debugging (press F5)</p>
http://stackoverflow.com/questions/794640/visual-studio-debugging-building/794667#7946670Answer by asgerhallas for Visual Studio Debugging/Buildingasgerhallas2009-04-27T18:26:06Z2009-04-27T18:26:06Z<p>You can use CTRL+SHIFT+B for building before hitting F5. Thats not a single step, but it's not using the mouse.</p>
<p>But it sure seems strange that it does not compile first if there are changes. It use to do that here at my computer.</p>
http://stackoverflow.com/questions/794640/visual-studio-debugging-building/794705#7947052Answer by Ronnie Overby for Visual Studio Debugging/BuildingRonnie Overby2009-04-27T18:33:39Z2009-04-27T18:33:39Z<p>I had to go into the properties for my solution and select the projects that I want to include during builds.</p>