Sinatr
Sinatr

Reputation: 22008

Visual Studio extension to notify about TFS

Is there an extension to show something (text, icon, whatever) when current project under TFS receives an update?

My problem: I am constantly forgetting to do "Get latest version". Seeing something should help.

P.S.: sorry if it's an offtopic, but I recall question regarding programming environment were allowed here and I am not asking for a library... unable to check for sure due to missing Help in the new shiny top bar.

Upvotes: 0

Views: 79

Answers (1)

Cece Dong - MSFT
Cece Dong - MSFT

Reputation: 31075

No such extension by default. The easiest way would be creating an alert as @Richard mentioned. When there is a check-in under a team project or a specific path, you would need to perform Get Latest, so you can create a Checkin alert.

enter image description here

Alternatively you could add a script to your source control. In this script, you can use tf get command to do get latest. You can always run this script when you would like to run.

Upvotes: 2

Related Questions