Hello,
My project1 references project2. In project2 I added some dll as link. However when I publish the project, the dll are not in the resulting folder.
Is it possible to do this or I am doom to add the dll directly to the project1.
Hello,
My project1 references project2. In project2 I added some dll as link. However when I publish the project, the dll are not in the resulting folder.
Is it possible to do this or I am doom to add the dll directly to the project1.
Dependencies are not copied transitively - I believe you'll have to manually add the reference to project1. You could have a postbuild step to copy all the dlls yourself instead, of course.