c# - Adding dll to release -
we have completed development of our first big application in c# , need export it. our app should work opening .exe file. there may other files in source folder, not matter(dll can next .exe). released in visual studio , work fine on our computers, when move somewhere else, not work. caused odac (library work oracle database), not installed on other pc, trying run it. how can add dll release? not understand answers i've found topic. dont need merge dll exe, dll can extern file. odac added project references , has stored way on our computers, guess can problem. 
it pop 
it strange me, release runnable without problem on our pc's not on other (i sure guy testing me has .net framework)
right click on reference in question, choose properties. ensure references set "copy output folder"=> always. that's going put necessary dlls in bin folder. ensure required version of .net framework installed on target clients.
edit: @ronbeyer stated in comment, how know it's not working? kinda glossed on important part in telling how ensure dlls copied appropriately
Comments
Post a Comment