I am using Visual Studio TFS 2010 and want to develop an notification application. I tried CommitCheckin event handler exposed by VersionControlServer class. But the event is not firing. I use it to notify user whenever a checkin is done.
I am using Visual Studio TFS 2010 and want to develop an notification application.
Share
I believe most of the
VersionControlServerclass events are only fired when changes happen in process. What you are trying to do is to find out when change happened in another process. This functionality is not documented well, but should be doable:PendingChangesChangedevent is fired cross process.I believe you need to initialize
NotificationManagerin your process in order to receive notifications.