Try the following: (if using 2010) On the Workspaces tab, you can map the folder have all the necessary DLL files, just make sure that you reference the assemblies in your project accordingly.
For example, if your project refers to assemblies at one UP level, you can set a workspace in front of the project root folder, as shown below:
$ \ Team Project \ src â $ (BuildDirectory) \ src
$ \ Team Project \ dlls â $ (BuildDirectory)
Something like this should solve your problem.
There is also a way to do this in VS2010 build: you must add the copy command to the pre-build phase for the project (select project â Properties â Assembly events).
If you want to use the Windows workflow method - template, refer to this guide: http://blogs.msdn.com/b/buckh/archive/2010/01/21/deep-dive-on-windows-workflow-4- 0-activities.aspx
source share