visual studio - TFS POST Build Command -


I have the following post build commands in the VS project:

  If $ (building InsideVisual Studio) '==' True '(xcopy / y / r / c "$ (targetpath)" "$ (SolutionDir) General \ bin")  

My problem is that the project Is referred to by two different solutions (which means that it is not valid).

My question is what is the probability of being around this? Actually, I want this to work and work and do nothing, when it does not happen.

If $ (SolutionDir) does not work for you, you should pay $ (ProjectDir) Use, such as $ (ProjectDir) .... \ common Another option is an environment variable that must be set per machine basis.


Comments