Installation problem with C# application -
i have designed c# application using visual studio 2010 .net framework 4.0 , works on pc. used dll connect oracle db. created setup project application deploy it, when tried install application on second pc, asked me install .net framework client, , have installed it. after when tried run application works each time code try call function dll throws exception:
system.io.fileloadexception: not load file or assembly 'system.data.oracleclient, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089' or 1 of dependencies
i added dll setup file, didn't work. have tried add code config file:
<runtime> <assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1"> <qualifyassembly partialname="system.data.oracleclient" fullname="system.data.oracleclient, version=4.0.0.0, culture=neutral, publickeytoken=b77a5c561934e089" /> </assemblybinding> </runtime>
but didn't work too. help, please.
i have found following: answer please check first answer maybe problem caused because have installed .net4 client profile on second pc not .net4 full framework
Comments
Post a Comment