IBuildDetailManager Interface
This interface represents the actions that can be performed with Build Details.
Namespace: Microsoft.VisualStudio.TeamFoundation.Build
Assembly: Microsoft.VisualStudio.TeamFoundation.Build (in Microsoft.VisualStudio.TeamFoundation.Build.dll)
Syntax
'Declaration
Public Interface IBuildDetailManager
public interface IBuildDetailManager
public interface class IBuildDetailManager
type IBuildDetailManager = interface end
public interface IBuildDetailManager
The IBuildDetailManager type exposes the following members.
Methods
Name | Description | |
---|---|---|
OpenBuild | This method opens a build details view on the build specified. | |
QueueBuild | This action is the same as the user selecting Queue Build from the Team Explorer Build Definition context menu. | |
RegisterLogViewInformationConverter | Call this method to register custom Build Detail Information Node converters to the Log View tab of the Build Details View. | |
RegisterSummaryViewFactory | Call this method to register custom Build Detail Factories that add new sections or add to existing sections on the Summary View tab of the Build Details View. | |
UnregisterLogViewInformationConverter | Call this method to unregister a converter that was previously registered by using RegisterLogViewInformationConverter. This should be done when your package or addin is unloaded. | |
UnregisterSummaryViewFactory | Call this method to unregister a factory that was previously registered by using RegisterSummaryViewFactory. This should be done when your package or addin is unloaded. |
Top