Dependency/Sequnetial building in .NET
-
I would like to do a Dependency/sequential build on the files in .NET. For example, I have 2 files x.c and y.c. Compiling and Linking of x.c needs y.z( the output of y.c). But since .NET builds in alphabetical order, I cannot aceheve this. I have seen similar behaviour in VC++ 6.0 as well. Is there a way to do this? kvprasad your future is what you think
-
I would like to do a Dependency/sequential build on the files in .NET. For example, I have 2 files x.c and y.c. Compiling and Linking of x.c needs y.z( the output of y.c). But since .NET builds in alphabetical order, I cannot aceheve this. I have seen similar behaviour in VC++ 6.0 as well. Is there a way to do this? kvprasad your future is what you think
I use MSVC6 - Select "Project->Dependencies...". I'm sure VS.NET has a similar option. Steve