One of my standard demos lately is to show off the new Feedback client – lately I have also been showing how you could launch the feedback client using our URI syntax i.e.
mfbclient://chassALM:8080/DefaultCollection/p:LureCo?rid=1,2,3
Where
ChassALM is an on premise TFS instance
DefaultCollection is my project collection (duh
) LureCo is my Teamproject
1,2,3 are my feedback request items
To use a Team Project on a Team Foundation Service instance you need to use the mfbclientS uri – see below.
mfbclients://chass.tfspreview.com/DefaultCollection/p:DevTeach?rid=93
(Please note this view was achieved using two monitors)
With my Windows forms sample I was using Process.Start to launch the feedback client –but in Windows 8 applications you need to use the Launcher object
With the entire line of code:
Await Windows.System.Launcher.LaunchUriAsync(New Uri("mfbclients://chass.tfspreview.com/DefaultCollection/p:DevTeach?rid=93"))