I’m not sure where exactly to put all the images and DLLs my program will be using. Do they go in the debug/release folders of my project? Or do they go in where all the source code is? Or is it somewhere else?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The DLL files typically go in a lib folder from where they are referenced. Any data you’re using typically goes in a folder for access during runtime if it is runtime data. Or you create a rule to copy them to the appropriate folder (Debug or Release) as you build the project.
These sorts of things are always different depending on the project, how many people are developing it and how it is supposed to be deployed.