0

I've copied a Visual Studio project from a Windows 10 computer to my Windows 7 machine. The sulution cannot be compiled because of an invalid assembly reference. On the original machine, the reference manager looks like this:

enter image description here

while on my machine the assemblies starting witn "interop" are missing:

enter image description here

What should I install on my computer to have interop.SQLXMLBULKLOADLib assembly?

mma
  • 381
  • 2
  • 15

1 Answers1

1

You need the SqlXml 3.0 Service Pack 3, you can download it here.

sephiroth
  • 896
  • 12
  • 22
  • Yes this was the solution, thank you. The reference in the original project was wrong. The correctly installed SQLXMLBULKLOADLib 3.0 (or 4,0) Type Library appears among the COM components, not under Assemblies/Extensions. – mma Oct 18 '19 at 14:35