c - Questions about Visual Studio project files -
what minimal set of files after creating project in visual studio (2010) have send uses different compiler ? (for example debug folder isn't necessary, .vcxproj.user file or other ?) .obj files? kind of information displayed in "watch" , "call stack" windows during debugging ?
the files absolutely need send source files , project file. source files *.c
or *.h
files, include others, resources.
as far other files go, each of them different. full list, of vs2013, found here. of them generated compiling , linking, or opening project in ide. quick way tell them apart clean solution, should delete , intermediate files.
the obj
files intermediate files use during linking, , don't need packaged. in fact, nothing in build or output folders needs included, they'll rebuilt. information that's used @ debugging pulled obj
, pdb
files, both created each time build.
Comments
Post a Comment