<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Team Foundation Server Event Subscription Tool</title><link>http://tfseventsubscription.codeplex.com/project/feeds/rss</link><description>A GUI tool for subscribing to events on a Team Foundation Server, equivalent to the command line bissubscribe.exe tool. It is deployable to client workstations, whereas bissubscribe.exe only exists on the Team Foundation Server. Project is originally based on the code at Naren&amp;#39;s website &amp;#40; http&amp;#58;&amp;#47;&amp;#47;blogs.msdn.com&amp;#47;narend&amp;#47;archive&amp;#47;2006&amp;#47;07&amp;#47;26&amp;#47;679440.aspx &amp;#41;</description><item><title>New Post: Custom Field usage</title><link>http://tfseventsubscription.codeplex.com/discussions/403870</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I think this is probably an old item, but I've been using the item for several months now to good success, but recently we added some custom fields and we need for these fields to be used in the EST to send emails.&amp;nbsp; I have tried using&lt;/p&gt;
&lt;p&gt;&amp;quot;ChangedFields/StringFields/Field[ReferenceName='ABC.PeerCodeReviewer']/OldValue&amp;quot; = 'user1' ,&lt;/p&gt;
&lt;p&gt;and I have tried &amp;quot;CoreFields/StringFields/Field[ReferenceName='ABC.PeerCodeReviewer']/OldValue&amp;quot; = 'user1'&lt;/p&gt;
&lt;p&gt;and neither one seems to work.&amp;nbsp; What is the correct way to reference custom fields?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>bryanwdickerson</author><pubDate>Mon, 19 Nov 2012 22:48:05 GMT</pubDate><guid isPermaLink="false">New Post: Custom Field usage 20121119104805P</guid></item><item><title>Source code checked in, #94877</title><link>http://tfseventsubscription.codeplex.com/SourceControl/changeset/changes/94877</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 22:38:35 GMT</pubDate><guid isPermaLink="false">Source code checked in, #94877 20121001103835P</guid></item><item><title>Source code checked in, #94876</title><link>http://tfseventsubscription.codeplex.com/SourceControl/changeset/changes/94876</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 22:31:06 GMT</pubDate><guid isPermaLink="false">Source code checked in, #94876 20121001103106P</guid></item><item><title>New Post: Cannot locate users?</title><link>http://tfseventsubscription.codeplex.com/discussions/22675</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I made a few changes to enable this.&amp;nbsp; See below for a minor change to ShowSubscriptions.&amp;nbsp; Enter a star in the user field searches for all subscriptions.&amp;nbsp; This hasn't yet been tested with the other functionality - just the search and display
 - so I don't know how this may impact adding/deleting/editing subs.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void ShowSubscriptions()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cursor.Current = Cursors.WaitCursor;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subscriptionslistView.Items.Clear();&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (eventService != null)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subscription[] subs;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (userTextBox.Text == &amp;quot;*&amp;quot;) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subs = eventService.GetAllEventSubscriptions();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subs = eventService.GetEventSubscriptions(userTextBox.Text);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Subscription s in subs)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/p&gt;
&lt;/div&gt;</description><author>bgi</author><pubDate>Wed, 22 Aug 2012 16:34:59 GMT</pubDate><guid isPermaLink="false">New Post: Cannot locate users? 20120822043459P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/discussions/213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi all. I also ported this tool to TFS 2010 and put it on GitHub (&lt;a href="https://github.com/mooware/tfseventsubscription"&gt;https://github.com/mooware/tfseventsubscription&lt;/a&gt;), since the project here seems rather dead.&lt;/p&gt;
&lt;p&gt;The only problem is that my new version can only manage subscriptions for the current user for some reason. Sadly the documentation for the API is practically non-existent, so it's hard to say what I'm doing wrong.&lt;/p&gt;&lt;/div&gt;</description><author>mooware</author><pubDate>Sat, 02 Jun 2012 12:12:42 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20120602121242P</guid></item><item><title>Commented Issue: Compatible for VS 2010? [17679]</title><link>http://tfseventsubscription.codeplex.com/workitem/17679</link><description>Hello,&lt;br /&gt;&lt;br /&gt;So I wanted to see if this tool would work for VS 2010 but as soon as I open the .exe &amp;#40;I&amp;#39;ve tried both the 08 version in an unzipped folder so it has it&amp;#39;s config file and the 05 version&amp;#41; I instantly get an &amp;#34;EventSubscriptionTool has stopped working&amp;#34; error.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m wondering if it&amp;#39;s because I have VS 2010 or if the tool is just not working&amp;#63;&lt;br /&gt;&lt;br /&gt;Also - perhaps I need to put the tool in a special folder&amp;#63;  I didn&amp;#39;t see any instructions to do so though...&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;&lt;br /&gt;Comments: ** Comment from web user: rohitsabhlok ** &lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;I am also seeing this issue. Looks like &amp;#34;EventSubscriptionTool&amp;#34; tool requires version 9.0.0.0 of assembly Microsoft.TeamFoundation whereas in VS 2010 we have version 10.0.0.0 of Microsoft.TeamFoundation &lt;br /&gt;Please see the attached image Error.png&lt;/p&gt;&lt;p&gt;The file EventSubscriptionTool.exe.config has following&lt;/p&gt;&lt;p&gt;&amp;#60;assemblyIdentity name&amp;#61;&amp;#34;Microsoft.TeamFoundation&amp;#34;&lt;br /&gt;                            publicKeyToken&amp;#61;&amp;#34;b03f5f7f11d50a3a&amp;#34;&lt;br /&gt;                            culture&amp;#61;&amp;#34;neutral&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;bindingRedirect oldVersion&amp;#61;&amp;#34;8.0.0.0&amp;#34;&lt;br /&gt;                           newVersion&amp;#61;&amp;#34;9.0.0.0&amp;#34;&amp;#47;&amp;#62;&lt;/p&gt;</description><author>rohitsabhlok</author><pubDate>Wed, 11 Apr 2012 12:27:22 GMT</pubDate><guid isPermaLink="false">Commented Issue: Compatible for VS 2010? [17679] 20120411122722P</guid></item><item><title>Created Issue: Compatible for VS 2010? [17679]</title><link>http://tfseventsubscription.codeplex.com/workitem/17679</link><description>Hello,&lt;br /&gt;&lt;br /&gt;So I wanted to see if this tool would work for VS 2010 but as soon as I open the .exe &amp;#40;I&amp;#39;ve tried both the 08 version in an unzipped folder so it has it&amp;#39;s config file and the 05 version&amp;#41; I instantly get an &amp;#34;EventSubscriptionTool has stopped working&amp;#34; error.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m wondering if it&amp;#39;s because I have VS 2010 or if the tool is just not working&amp;#63;&lt;br /&gt;&lt;br /&gt;Also - perhaps I need to put the tool in a special folder&amp;#63;  I didn&amp;#39;t see any instructions to do so though...&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;&lt;br /&gt;</description><author>teec</author><pubDate>Thu, 22 Mar 2012 21:47:51 GMT</pubDate><guid isPermaLink="false">Created Issue: Compatible for VS 2010? [17679] 20120322094751P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/discussions/213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;blockquote style="border: solid .1em #ccc; font-style: italic; margin: .25em 1em 0 1em; padding: 0 .25em 0 .25em;"&gt;&lt;strong&gt;JimDaniel wrote:&lt;/strong&gt;&lt;br /&gt;
&lt;p&gt;Aren't you guys programmers, or have access to programmers? :-) All you need to do is download the source code, reference the Visual Studio 2010 DLLS instead of 2008, and rebuild. There are some deprecated classes, and some of the old classes are in new  namespaces (specifically in the Microsoft.TeamFoundation.Framework.Client namespace) but the exact same code is working for me. I just added a custom alert using the tool yesterday.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Could you &amp;nbsp;upload your changes as patch to avoid everyone to do changes by themself?&lt;/p&gt;&lt;/div&gt;</description><author>mfreidge</author><pubDate>Sun, 04 Mar 2012 02:28:07 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20120304022807A</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/discussions/213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Worked great for me, on Win7 64bit even. &amp;nbsp;Thanks so much!&lt;/p&gt;&lt;/div&gt;</description><author>tmellor</author><pubDate>Fri, 13 May 2011 21:35:21 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20110513093521P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Thanks! Works for me too :)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>Arturos</author><pubDate>Tue, 01 Feb 2011 08:29:28 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20110201082928A</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Yeah, I updated it for TFS2010.&amp;nbsp;&lt;a href="http://bit.ly/EventSubscriptionTool2010" target="_blank"&gt;http://bit.ly/EventSubscriptionTool2010&lt;/a&gt; &amp;nbsp;&lt;br&gt;
I'm not sure whether it works well for you guys or not. It just works fine for me.&lt;br&gt;
Hope it's useful for someone.&lt;/p&gt;
&lt;/div&gt;</description><author>gongdo</author><pubDate>Thu, 02 Dec 2010 02:54:14 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20101202025414A</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Aren't you guys programmers, or have access to programmers? :-) All you need to do is download the source code, reference the Visual Studio 2010 DLLS instead of 2008, and rebuild. There are some deprecated classes, and some of the old classes are in new namespaces (specifically in the Microsoft.TeamFoundation.Framework.Client namespace) but the exact same code is working for me. I just added a custom alert using the tool yesterday.&lt;/p&gt;&lt;/div&gt;</description><author>JimDaniel</author><pubDate>Fri, 15 Oct 2010 13:21:23 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20101015012123P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;(bump) still looking for TFS 2010 support&lt;/p&gt;&lt;/div&gt;</description><author>AllenFeinberg</author><pubDate>Tue, 12 Oct 2010 12:42:13 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20101012124213P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;(bump)&lt;/p&gt;&lt;/div&gt;</description><author>AllenFeinberg</author><pubDate>Sun, 03 Oct 2010 17:48:47 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20101003054847P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;(bump)&lt;/p&gt;&lt;/div&gt;</description><author>AllenFeinberg</author><pubDate>Mon, 20 Sep 2010 10:57:28 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20100920105728A</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;++ Neno. We really want an easy way to manage everyone's email subscriptions on our TFS Server. Until TFS has an automated way of setting up email alerts for users say &amp;quot;when a work item is assigned to me&amp;quot; then we'll have users that don't have a clue that TFS can automatically send them notifications. Therefor our TFS Administrator spends his day working from a sharepoint list that users update with what type of email alerts they are looking for. [Our users aren't the brightest bulbs in the bunch but they get their code working and so we just handle alerts behind the scenes for them...and yes we've shown them the TFS power tools about a billion times.]&lt;/p&gt;
&lt;p&gt;Still hoping for this tool to be upgraded...even a command line tool would be ok...if we have to brute force it.&lt;/p&gt;&lt;/div&gt;</description><author>AllenFeinberg</author><pubDate>Mon, 09 Aug 2010 14:17:59 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20100809021759P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;bhopenw, the &amp;quot;Alerts Explorer&amp;quot; does only support showing subscriptions created by you, whereas the Event Subscription Tool gave you the ability to manage and administer ALL subscriptions on the server.&lt;/p&gt;&lt;/div&gt;</description><author>Neno</author><pubDate>Mon, 09 Aug 2010 09:31:37 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20100809093137A</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;You should check out the TFS 2010 Power Tools 

Alerts Explorer
 A plug-in to Visual Studio, Alerts Explorer provides a graphical user interface that supports flexible subscription of alerts based on check-in, work item change, or build completion.
 
http://visualstudiogallery.msdn.microsoft.com/en-us/3e8c9b68-6e39-4577-b9b7-78489b5cb1da

&lt;/div&gt;</description><author>bhopenw</author><pubDate>Fri, 06 Aug 2010 17:28:13 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20100806052813P</guid></item><item><title>Source code checked in, #57274</title><link>http://tfseventsubscription.codeplex.com/SourceControl/changeset/changes/57274</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Wed, 28 Jul 2010 22:13:23 GMT</pubDate><guid isPermaLink="false">Source code checked in, #57274 20100728101323P</guid></item><item><title>New Post: Any plans to refresh for TFS 2010?</title><link>http://tfseventsubscription.codeplex.com/Thread/View.aspx?ThreadId=213633</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Definitely interested in seeing support for TFS 2010. Any plans, any hope?&lt;/p&gt;&lt;/div&gt;</description><author>allenfeinberg</author><pubDate>Fri, 09 Jul 2010 16:47:27 GMT</pubDate><guid isPermaLink="false">New Post: Any plans to refresh for TFS 2010? 20100709044727P</guid></item></channel></rss>