Visual Studio debugger error: Unable to start program Specified file cannot be found

后端 未结 3 1677
夕颜
夕颜 2020-12-03 02:24

I have a solution in C:\\full path here\\VS2010\\blender.sln

This solution contains many projects(around 100). When I compile them, they all work fine. I can run the

3条回答
  •  清歌不尽
    2020-12-03 03:05

    I think that what you have to check is:

    1. if the target EXE is correctly configured in the project settings ("command", in the debugging tab). Since all individual projects run when you start debugging it's well possible that only the debugging target for the "ALL" solution is missing, check which project is currently active (you can also select the debugger target by changing the active project).

    2. dependencies (DLLs) are also located at the target debugee directory or can be loaded (you can use the "depends.exe" tool for checking dependencies of an executable or DLL).

提交回复
热议问题