Where should i put dll file(that i use in my project)

后端 未结 5 1539
栀梦
栀梦 2021-02-19 21:16

Im setting up a svn repository and wondering where i should put the dll files.

What Ive currently done is put them in the /bin/debug folder and then link them in my pro

5条回答
  •  臣服心动
    2021-02-19 21:33

    I presume you are asking about third party dll files, because the output (exe/dll) files generated by the project are better left unmanaged by SVN, because they are regenerated on each and every build.

    What I usualy do is create a Lib folder, that is on the top level of my source tree, and put all needed references there, usually in additional folder divided by tool or by functionality (logging, emailing, apis, etc, etc...)

提交回复
热议问题