I created a utility library for my Sharepoint WebParts. Now when I reference this library from my WebPart project, it compiles fine, but the library is not included in the .wsp package. This means the library assembly is not deployed to the target system, causign the WebPart to fail.

Is there any way to fix this? I am using Visual Studio 08 & VseWSS 1.2.

link|improve this question

72% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Brij's answer is partially correct, your VSeWSS version is the problem. This feature only came in version 1.3 (I recommend the March CTP) to have the CopyToLocal=true automatically add the assemblies to the GAC for you.

link|improve this answer
This is why i like WSPBuilder – AMgdy Dec 20 '09 at 11:50
feedback

Right click of Assembly > Properties
Set “Copy Local” property = true
Build project.
See following for more details:
http://urenjoy.blogspot.com/2009/08/add-assembly-wsp-vsewss.html

link|improve this answer
1  
If you want to use the utility assembly also in other web part, you should deploy it as an own solution and feature. Otherwise the utility assembly will be retracted together with you web part assembly although the assembly of another web part might reference it. – Flo Dec 8 '09 at 11:03
Good point. So should I always make an own feature for the utility library if its used by more than one WebPart? – driAn Dec 9 '09 at 14:56
feedback

Your Answer

 
or
required, but never shown

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