The below code works fine for ItemAdded, however it isn't firing for ItemUpdated, simply put how do you add an ItemUpdated event receiver for a Wiki Page Library.
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Receivers ListTemplateId="119">
<Receiver>
<Name>Wiki Receiver Item Updated</Name>
<Type>ItemUpdated</Type>
<Assembly>$SharePoint.Project.AssemblyFullName$</Assembly>
<Class>Custom.SharePoint.Intranet.WebTemplates.WebParts.WikiReceiver.WikiReceiver</Class>
<SequenceNumber>10001</SequenceNumber>
</Receiver>
</Receivers>
</Elements>
namespace Custom.SharePoint.Intranet.WebTemplates.WebParts.WikiReceiver
{
/// <summary>
/// List Item Events
/// </summary>
public class WikiReceiver : SPItemEventReceiver
{
/// <summary>
/// An item was added.
/// </summary>
public override void ItemUpdated(SPItemEventProperties properties)
{
[update]
I have created Deleted and Updated a fresh and both will not fire.
updatingmethod afterwards? If that is the case make sure you add it through properties in VS, as it might add additional setting to the hidden file – eirikb Oct 2 '12 at 16:20