I am trying to add some web parts to a custom site definition. I am
able to do it if I add my part to the GAC and get a public key token.
I am trying to do this with webparts only deployed to the bin (using
Ted Pattison's techniques in his 2007 webcast). Is it possible to add
web parts to a site definition without putting the part in the GAC?
Here is the following code chunk.
<WebParts>
<AllUsersWebPart WebPartZoneID="Main" WebPartOrder="2">
<![CDATA[
<WebPart xmlns="http://schemas.microsoft.com/WebPart/v2">
<Assembly> OverdueTasksPart, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=33c030758c3fa08e</Assembly>
<TypeName>OverdueTasksPart.WebPart1</TypeName>
<Title>Your Overdue Tasks</Title>
<Description></Description>
<FrameType>None</FrameType>
</WebPart>]]>
</AllUsersWebPart>
</WebParts>