1

我有一个 TFS2012 插件,它使用

公共 EventNotificationStatus ProcessEvent()

获取 WorkItemChangedEvent。它没有做太多,它只是将 WorkItemChangedEvent 添加到消息队列中,以便稍后我可以使用不同的服务来获取它。

由于某种原因,该事件总是为我更改的每个工作项触发两次,并将该事件两次添加到我的队列中。

知道为什么吗?

我使用的代码:

    public EventNotificationStatus ProcessEvent(
        TeamFoundationRequestContext requestContext,
        NotificationType notificationType, object notificationEventArgs,
        out int statusCode, out string statusMessage, out ExceptionPropertyCollection properties)
    {
        statusCode = 0;
        properties = null;
        statusMessage = String.Empty;

        try
        {
            if (notificationType == NotificationType.Notification && notificationEventArgs is WorkItemChangedEvent)
            {
                var ev = notificationEventArgs as WorkItemChangedEvent;
                const string queueName = ".\\private$\\tfs";
                var msgQueue = new MessageQueue(queueName);
                var msg = new Message(ev);
                msgQueue.Send(msg, MessageQueueTransactionType.Single);
                Log.Debug(string.Format("Added event for work item #{0} to queue", ev.WorkItemTitle));
            }
        }
        catch (Exception ex)
        {
            Log.Fatal("Error", ex);
            return EventNotificationStatus.ActionDenied;
        }

        return EventNotificationStatus.ActionPermitted;
    }
4

1 回答 1

6

(和往常一样,在我问了这个问题几分钟后,我得到了正确的想法)

今天我了解到:插件目录中的子文件夹不足以禁用插件。我在“旧”文件夹中备份了旧自动化,但它仍然加载了它。

于 2013-06-13T12:25:53.607 回答