views:

52

answers:

2

I have found a solution for this, but it only works if you use .DEF files (I don't).

I wonder if this can be done without .DEF files.

+2  A: 

Since you are using Visual Studio, you can set the output file path through the project's property pages:

Properties --> Linker --> General --> Output File

In silico
+5  A: 

Project > Properties. Then Configuration Properties > Linker > General > Output file. Here you should have something like: $(OutDir)\$(ProjectName).dll just put $(OutDir)\$(ProjectName)d.dll

Eugen Constantin Dinca