Visual Studio 2015: Program out of date -


i've been using vs2015 rc until july 19th, uninstalled , subsequently installed vs2015 community (the official release). able debug , run c++ programs on vs2015 rc, however, when try run simple program have debugged in past or new one, vs2015 community gives me popup says: "this project out of date. projectname - debug win32. build it?"

i've been on , found this: visual studio project out of date, after deleting .tlog files, i've still been getting same issue. i've deleted .pdbs, hasn't helped either. know fix might be? thanks!

you can change build output verbosity setting make visual studio 2015 tell why rebuilding:

  1. build solution
  2. change msbuild project build output verbosity setting detailed or diagnostics. it's found here:

    • tools (menu)
    • options
    • project , solution
    • build , run
  3. build solution , check output view.

in case printed message this:

 1>------ up-to-date check: project: xyz, configuration: xyz ------ 1>project not date because build input 'c:\ws\missing.h' missing. 

... , removing header project fixed problem.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -