Click here to Skip to main content
15,881,804 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I change a dlls directory?

For Example:

Current Dll Path Bin\Debug
I want the path to be in a different folder such as
Bin\Debug\Dlls
Without ruining the codes process.

What I have tried:

I have tried changing its directory via properties.
Posted
Updated 15-Jul-21 7:26am
Comments
Richard MacCutchan 15-Jul-21 12:28pm    
You will need to move it physically. Use Windows Explorer or the move command.

1 solution

If you are referencing the DLL's as projects in your solution, then go to the properties of
each DLL project in Visual Studio and click on BUILD on the left of the form. Change the output path from "bin\Debug\" to "bin\Debug\Dll". Do this for each DLL project.

If these are precompiled DLLs, you will have to move them manually as Richard suggested.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900