Link to home
Start Free TrialLog in
Avatar of mkarthik415
mkarthik415

asked on

post build event macros

I need to copy one assembly into one of my test proj. The folder structure is like this.
C:\f1\f2\f3\f4\f5
and  $(SolutionDir) macro evaluates to C:\f1\f2\f3\ but i need to copy the assembly at below mentioned location.
C:\f1

I tried with the below command but failed.
copy $(SolutionDir)\..\reps $(OutDir)

Could any one provide suggestions on this.

Thank You


ASKER CERTIFIED SOLUTION
Avatar of dj_alik
dj_alik

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kaufmed
Remove the slash after $(SolutionDir):

[code]copy $(SolutionDir)..\reps $(OutDir)[/code]