Ajax tool kit deployment issue
I am having deployment issue with AjaxControlToolKit.dll. I copied the DLL to my local bin dir, and it works fine. But when I do the build on test server, the files are not in Visual Source Safe anywhere, so the site doesn't work. What could be the issue?. 开发者_StackOverflow中文版
Thank you..
You can either check in the AjaxControlToolkit assembly and any dependencies it has, or you can install it (if there is an installer) on your build and test machines. Checking it in is preferred in most cases as it makes it obvious that you have this dependency. Rather than putting it in your .\Bin folder, make a .\References (or similarly named) folder and put it there along with any other binary references you have. Then, you can add a reference at that location and set it to "Copy Local".
精彩评论