vote up 3 vote down star

Hello,

I'm calling a non-.NET dll from my project using P/Invoke, meaning that the .dll must always be present in the .exe's directory.

Is there any way to tell Visual Studio of this dependency, so that it will automatically copy the .dll to the output directory when compiling, and will automatically include the .dll in the setup? Or do I have to do this manually?

flag

64% accept rate

3 Answers

vote up 1 vote down check

You can copy/link this file(s) to the project, and in properties windows set "Build Action" to "None" and "Copy to Output Directory" to "Copy if newer" or "Copy always".

Or you can use a "Pre-Build Events" & "Post-Build Events" where you can specify any batch scripts.

I prefere the second option, because this way is more flexible than the first.

Also you can modify a MSBuild file and add a task for copy the file(s).

link|flag
Thanks, the first option is what I was doing - wondered if there was a better way – Groky Sep 24 '08 at 10:30
vote up 4 vote down

You can simply add the .DLL to your project. Select the properties for that file and set Build Action to "Content" and "Copy to Output Directory to "Copy if newer".

link|flag
Build Action = "Content" is better than Build Action = "None" suggested in another response. This is because you can easily include "Content" files in a Setup project. – Joe Sep 24 '08 at 11:02
Yes, and that is exactly why I suggested that in my response. – Magnus Johansson Sep 24 '08 at 12:28
> that is exactly why I suggested that in my response And why I upvoted your answer:) – Joe Sep 24 '08 at 16:48
vote up 0 vote down

I think one problem with just adding a .DLL to the project is that you may need different versions of a DLL for debug and release builds. You'd think you can add both debug and release versions of the DLL to the file, and based on configurations, exclude the inappropriate one, but I couldn't find a way to do that. I'm using Visual Studio 2010. I am positive this worked in the old days with VS6.

link|flag

Your Answer

Get an OpenID
or

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