How many other projects use this DLL? If it is only a couple, than it shouldn't be a big deal to simply recompile them with the new version.
Printable View
How many other projects use this DLL? If it is only a couple, than it shouldn't be a big deal to simply recompile them with the new version.
You messed up the original interface by adding something new to it.
If you want to modify something with bninary compatibility on - try something like this:
Code:'old code section
implements interface1 ' old interface name
' existing old code
' put new code below
implements interface2 ' create a seconde version od the interface
' put the new stuff - properties, methods or any changes down here
Try recompiling everything that this object referances. Then come back to this project.. Un referrance everything. Then rereferance them again.
OR you can compile withOUT binary compatibility, hten come back in and compile again BUT with binary compatibility.
Hope this helps,
Joan