vote up 1 vote down star
1

Every time I add a reference to a web project in visual studio 2008 that is in my GAC, it adds the reference as a GAC reference and doesn't copy the file to my bin directory. But for deployment purposes, I would like to add the reference as a non-GAC reference so it adds the dll to my bin directory. I've tried using the browse button to select the reference instead of picking from the list window, but that adds a GAC reference too.

These references all have the .refresh file with them and there is not an option to copy local in the properties of the file.

Any help please?!?

flag

4 Answers

vote up 5 vote down

Right click on the reference, select properties, flip Copy Local from False to True

link|flag
There is not an option to copy local. The only options available in the properties are: Auto-refresh path, File Name and Full Path. – Chris Conway Dec 22 '08 at 19:36
You are not looking at the right thing then. – StingyJack Dec 22 '08 at 20:36
The values you gave are not in the references properties dialog – Matt Briggs Dec 22 '08 at 20:41
vote up 1 vote down

Set it to Copy Local

link|flag
vote up 0 vote down

If you reference .NET Framework standard assemblies, then as I understand you couldn't have a local copy of it. The only way is to install framework on target computer.

It it is a third party assembly then you could copy assembly to bin directory manually from directory where it is located.

You may also try to remove assembly from GAC by gacutil.exe in Windows SDK and look what will happen now if you try to add reference by 'Browse' tab.

link|flag
vote up 0 vote down

Chris, you're probably long past this problem, but I stumbled upon your question when trying to do the same thing in VS 2005. In case anyone else comes here looking for a solution....

You are correct, of course, that a web project does not give you the copy local option on your references that a normal project does, so the Copy Local... solution is a non-starter.

I worked around this problem by simply adding an existing file to my web app's bin directory. The drawback is that it doesn't add the refresh reference, so if you rebuild the external file you'll have to manually refresh the local copy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.