#1
|
|||
|
|||
Automating build file creation
Is there any way to control the order in which files are processed in the 'processed files' task? I have to build in a certain order due to dependencies.
Last edited by james28x; 03-09-2004 at 01:48 PM. |
#2
|
|||
|
|||
No, they are always processed in the order returned by FindFirstFile/FindNextFile (which is alphabetic for NTFS and order of creation for FAT, IIRC).
If you have the list of files to process in the correct order, you could use the technique described here to iterate over the list: http://www.kinook.com/Forum/showthread.php?threadid=231 |
#3
|
|||
|
|||
Thanks for the reply. I think I'm just going to create "build" solutions in VS.Net and let them take care of the project dependencies.
|
|
|