i need to set a pre-build event in visual studio that will build and deploy a solution. the separate solution is in a directory below the current directory of the solution that i am working in. does that make sense?
top level dir
/ \
/ \
/ \
|------------| |-----------------|
| mySLn.sln | |prebuild sln dir |
|------------| |-----------------|
\
\
\
|-----------------|
| prebuild.sln |
|-----------------|
the problem is that we have multiple developers so to use a absolute path for the solution will not work. we will have to manually update the path per develoepr per dev server. is there for the developers to have a pre-build event to build and deploy the prebuild.sln from visual studio 2010 with a relative path? everything i see online is full path for: devenv /build devenv /deploy
is there a variable i can grab for the full path that the current solution is in and append my subdirectory and solution to the devenv command for a full path?