we have just upgraded to TFS 2017 from 2013. We had a custom plugin that ran when we changed the build quality. Since the upgrade it doesn't fire. we have tried changing the required DLLs to use the The 2017 client dlls. but the build quality handler does not trigger the plugin. it uses the Microsoft.TeamFoundation.Framework.Server.ISubscriber interface. We do not get any exceptions as well on the tfs server.
1
There are 1 best solutions below
Related Questions in TFS
- Missing Header (Feature Title and Toolbar) on some Feature Work Items in TFS Web Access
- Upgrading separate Project Collection Database to new TFS Version
- OpsHub Visual Studio Online Migration Utility Hangs on Creating Configuration
- The merge tool is not showing when call Workspace.ResolveConflict method in TFS 2012
- HowTo: change a project's status from `Invalid` to `Valid`?
- TFS 2013 Object reference not set to an instance of an object in Team Explorer
- Release Management for Visual Studio 2013 - Release Exception
- Visual studio 2013 team project has been deleted
- TFS version control does not show conflicts
- include typescript file in output result build with TFS
- Team Foundation 2012 not recognising changes in vb6 app
- WebDeploy from TFS using Build Definitions to IIS site containing files changed by users
- Team Foundation plugin for Android Studio
- TFS 2013 with Octopus Deploy, Email Template - Resolved Bugs/User Stories
- What is the best branching strategy in TFS to share code between multiple team projects?
Related Questions in TFS-SDK
- Cannot create link between WorkItem and Server object in TFS 2012
- Get Changed Lines With TFS API
- Get TFS work item and its links using REST API
- TFS 2017 Build Quality Handler
- Get teams I am member of
- Work Item Query Policy to check workitems match on merge
- Make Changes to a TFS Work Item as a specific user
- how to remove tags in text while displaying on a web page
- How to handle collection of data in C#?
- using file upload control to upload a file and pass the file to an object/web service
- Accessing TFS Work Item Properties "Blocked" & "Root Cause" using TFS API
- Using TFS API to fetch All Priority Triage Severity values
- Saving and reading files to and from droplocation
- What would be the recommended way to integrate Microsoft Team Foundation Server into an iOS application
- How do i get the 'branch' icon to display in TFS 2013 Source Control when using the TFS API?
Related Questions in TFS-2017
- TFS2017: Setting for temp query URL (message)
- TFS 2017 Build Quality Handler
- TFS 2017 Deploy ASP .NET Core
- TFS 2017 missing "Path Filter" for specifying CI trigger?
- Programmatically retrieve list of source folders and create one if not present - C# + VSTS 2017
- How to update the Build Agent Manually in Azure DevOps 2020?
- How to download a specific labelled code from TFS using PowerShell Script?
- How to checkout a file in TFS using PowerShell?
- Is a build agent required for each project in a collection?
- How to Check-in a file in BitBucket Repository with TFS CI Build Definition?
- Error TF401444 when calling TFS Server REST API with a PAT (personal access token)
- Publish Nuget package from on premise TFS2017 to azure DevOps
- After upgrading to TFS 2017.3, web portal check ins do not kick off the gated check in build
- TFS 2017 - Show Tags in List of Builds
- TFS 2017 Builds - Retain Indefinitely (Keep All)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The ISubscriber implementation needs to be recompiled against the TFS 2017 Server as well as Client object model.
And it's important to understand that the new build infrastructure (the non-xaml builds) likely trigger a different set of notifications. At least they're not queryable with the old Client Object Model IBuildServer, you need to use the new REST API.
Without knowing more about your setup (what type of builds, the exact versions of the object model you're binding against, what permissions the TFS Service user has) it's hard to tell where this is going wrong. We have a troubleshooting guide for the TFS Aggregator (https://github.com/tfsaggregator/tfsaggregator/wiki/Troubleshooting) which is also a ISubscriber plugin, it may help you debug your setup.