vote up 1 vote down star
2

We're implementing Team Build and know we need to write MSBuild scripts to build our legacy VB 6 app. It's configured to use Binary Compatibility and we break Compatibility occassionally and we'd like our new automated build process to be able to Break Compatibility automatically.

Anyone know how to do this or if it's even possible?

Alternatively, I know that the break just changes the compatibility to No Compatibility, compiles, changes to Binary and recompiles. If anyone knows how to just change Compatibility from the command line this would also be helpful.

flag

3 Answers

vote up 1 vote down check

Regarding changing from Compatibility to No Compatibility, I've done things like this by editing the project file with Unix-style tools (sed, awk, and/or perl). Do not change the original project file, but instead generate a new/temporary project file, and build with that. Here's an example:

sed -e "s/CompatibleMode=0/CompatibleMode=2" <myProj.vbp >tmpProj.vbp

You can use this technique for other purposes, such as inserting a version number into the project file.

link|flag
vote up 0 vote down

This works:

VB6 /MAKE c:\Some.vbp /outdir c:\somedir\ /d CompatibleMode="0" CompatibleEXE32=""

link|flag
vote up 1 vote down

The /d switch allows you to replace project property values at compile time. Try

VB6 /MAKE c:\Some.vbp /outdir c:\somedir\ /d CompatibleMode="0"
link|flag
Hmm... Are you sure this trick works with VB 6.0 (and with DLLs)? Help doc says /d is for defining compilation constants. I still tried to use it and it did not work at all! :-( – Yarik Mar 19 at 1:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.