I've been using using F5 (Start Debugging) for years to build the code (if its out of date), and then debug. This was working on VS 2010 also, however today it just start debugging without a build. Say I do a clean on the project, and then hit F5 instead of building it so it can run it throws an error message saying that the exe doesn't exist to run. How do I make it build first? What could have changed?
|
|
Tools + Options, Projects and Solutions, Build and Run. "On Run, when projects are out of date" = Always build. The one below that = Do not launch. |
|||||||||||||||||||
|
|
For a while now I have alwasy been confused as to why my laptop (dual core 2ghz, 2Gb ram) compiled my website quicker than my desktop (quad core 3ghz with 16Gb ram). Both have SSD disks. Build options all set correctly (the same, core count = parallel builds) yet the laptop runs the site in a few seconds and the dekstop runs the site in about 30 seconds. Found an additional option under the "Property pages" of the site, under the Build setting, laptop was set to "No Build" and desktop set to "Build and Run". Only found it after the site ran on the laptop without checking for a compiler error. Might help someone in the future so thought I would add it to this post |
|||
|
|
|
I had this problem too. I checked everything suggested to no avail. It turns out my clock on my pc had gotten set forward by about 12 hours, and I was saving to a network drive. The timestamps of the files were out of wack, and VS didn't think it needed to build my project because the files were super up to date. |
|||
|
|
|
Apart from the above also make sure that 'Only build startup projects and dependencies on run' is unchecked (in Tools-->Options-->Projects and Solutions-->Build and Run) |
|||
|
|
|
open your configuration manager and check out if the checkbox in the build column for your startup project is checked. I had the same problem, but the checkbox wasn't active, so i checked it and now it works! |
|||
|
|
|
I had this problem and it turned out to be the Configuration Manager. I had recently changed from Debug|Mixed CPU to Debug|Any CPU and the project wasn't set to build under this configuration |
|||