I'm having a few issues building a website project (those without a project file) in VS2008. My website references another project that contains the business logic for the application which itself references third-party DLLs.
Now when I add the business logic project reference to the website, the project DLLs are 开发者_如何学JAVAcopied across to the BIN directory of the website but none of the third party DLLs that are required for it to run. I've ensured that 'copy always' is set in my business logic dll references.
I recently upgraded my system to VS2008 9.0.30729.4462 QFE as part of a migration to Team Foundation Server 2010 and the problems only seem to have started since this upgrade.
Any suggestions?
Thanks
You'll need to manually reference the 3rd party dlls in your project. The copy feature in VS only copys the project assembly when it is referenced.
精彩评论