vote up 2 vote down star
1

When working on a VS2005 project that involves referencing Microsoft.SharePoint.dll, building the project causes Microsoft.SharePoint.Search.dll to be copied to my bin folder. Why is this? Okay, maybe it's just a bug, but I want to know the mechanism.

[Edit: Copy local is most definitely turned off -- Microsoft.SharePoint.dll is not copied. Microsoft.SharePoint.Search.dll is not in the GAC but it wouldn't matter if it was.]

flag

80% accept rate

5 Answers

vote up 1 vote down check

What worked for me is to

  • add reference to Microsoft.SharePoint and Microsoft.SharePoint.Search (even if you don't need it)
  • set Copy Local to false for both references.

When you build the project none of them gets copied to debug/release/whatever directory.

link|flag
no kidding? I'll check that out and accept if it works. Thx. – Hafthor Jun 14 at 7:00
sorry that took so long - it does work - accepting, although I'd still like to know why this is happening. Shrug. – Hafthor Jul 7 at 18:27
vote up 0 vote down

Did you try turning off 'Copy Local' in the properties for the reference to Microsoft.SharePoint.dll ?

link|flag
vote up 0 vote down

may be because it is not in GAC, because other files which are in GAC are not copied there.

link|flag
vote up 0 vote down

Its probably a dependency, and you have copy local enabled.

I'd keep copy local enabled though, as it really eases deployment pains.

link|flag
I don't agree that copy local is a good move for MS assemblies. What if a hotfix has been deployed to the server and your solution is referencing (and copying) an unpatched version? Mayhem! – Alex Angas Oct 14 '08 at 13:48
vote up 1 vote down
  • It's not in the GAC
  • It's being used by one of the Assemblies you reference (i think Microsoft.Sharepoint.dll references it)
  • Since you don't reference it, you cannot set Local Copy to FALSE as far as I know
  • I've changed my build/deployment scripts to just delete it.
link|flag
That's strange that you got down voted when your answer is the closest to what's happening. I've upvoted it but I want to understand why this happens. It can't just be the referenced referencing causing the copy... this hasn't happened elsewhere AFAIK. – Hafthor Oct 13 '08 at 21:36

Your Answer

Get an OpenID
or

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