Hi,
Here is our situation:
We have multiple versions of our application and each version is stored in a different network path. When we want to work on our application and modify some code we only take a few files and leave the rest on the network. This causes a problem when we want to debug and step through the code. If the file we want is on our network path, we get the following message: “ file X.cpp not found. You need to find X.cpp to view the source for the current call stack frame“. Then Visual Studio asks us to give the path of the file we are currently trying to debug.
What we must do for the moment:
To work around this problem we go in the Solution Properties\Commun Properties \ Debug Source Files and manually add the network folder containing all the code for the version we are working on. Each time we open a different solution we much change this path to match the current version we are working in.
What we would like to do:
We are already extending the Visual studio 2013 environment. So what we want to do is automate the process of adding/updating the network path in the solution properties each time a solution is open. How can we do that? Is there a way to automatically change the Debug Source File property of a solution?
Note that the version (thus the network path) associated to a local path changes every day and we can have to debug different versions at the same time.
thanks