After a few years with VB6, our projects, as a rule, were structured as follows:
All project sources (project and source) are organized in the source folder.
\ Project \ source
\ Project \ source \ project1 \
\ Project \ source \ project2 \
...
All binary files (.dll and .exe) in one bin folder.
\ Project \ Bin \
All .dlls are installed as binary files that are compatible with the resulting file in a single bin directory.
, ,
build.cmd, , , :
" c:\Program Files\Microsoft Visual Studio\VB98\VB6.EXE"/M.\source\project1\proj1.vbp
" c:\Program Files\Microsoft Visual Studio\VB98\VB6.EXE"/M.\source\project2\proj2.vbp
" c:\Program Files\Microsoft Visual Studio\VB98\VB6.EXE "/M.\source\project3\proj3.vbp
del.\bin\*. exp
del.\bin\*. lib
.
, , VB .
, build.cmd .