I have a Visual Studio solution with 20+ projects in it. It also uses a large repository of various tools and dll's (static, unchanged files), which is an extremely large svn checkout and only present once on the harddisk (due to static nature and sheer size).
However I have a multitude of visual studio checkouts with the projects, all in different states, versions, etc, and on different disks and different paths.
I have a set of static dll's which need to be copied over from the static library resource location on disk, whose location is indicated by an environment variable which is used throughout all the project settings (and also by all the other programming languages which are also used).
Currently I always manual copy the required dll's to the projects bin output folder, but now I'm trying to get Visual Studio to automatically copy over these files so I can immediately run the applications.
I want to use Visual Studio date/time and existence check to cleanly intergrate it, but files added to my project are always added using an relative path (to the project) which causes problems if I have checkouts on another disk and/or at a different depth in the filesystem.
Examples of the values in my project file:
<File
...
RelativePath="main.cpp"
...
RelativePath="..\..\..\..\..\somelib-1.3\redistributables\somelib.dll"
...
RelativePath="F:\somelib-1.3\redistributables\somelib.dll"
I've tried modifying these fields directly in the project XML to
RelativePath="%MYLIBPATH%\somelib-1.3\redistributables\somelib.dll"
or
RelativePath="${MYLIBPATH}\somelib-1.3\redistributables\somelib.dll"
but both unfortunately don't work.
Alternatives:
- include the dll's files in the actual project in svn; this would cause duplication
- dummy file in project which dll's at target location as outputs, and custom build step that's uses something to copy them over and touch the files (due to the date/time comparision); rather ugly
- project level custom build step that does a xcopy; the step bypasses date/time checking and thus always runs
Any other ideas?