IVsFireUpdateSolutionEvents Interface
Implemented by the Environment. Used by projects that nest sub-projects. These projects must implement IVsParentProject. This interface allows a project that nests sub-projects to fire the same UpdateSolutionEvents that the Solution normally fires. This interface is similar to the related IVsFireSolutionEvents interface but is accessed via QueryService for the SVsSolutionBuildManager service. These methods iterate through the notification sinks of clients of IVsUpdateSolutionEvents and call the appropriate notification method.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.11.0 (in Microsoft.VisualStudio.Shell.Interop.11.0.dll)
Syntax
'Declaration
<GuidAttribute("D8C0B590-65EC-42F7-903F-8ED7C1B3D629")> _
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
Public Interface IVsFireUpdateSolutionEvents
[GuidAttribute("D8C0B590-65EC-42F7-903F-8ED7C1B3D629")]
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsFireUpdateSolutionEvents
[GuidAttribute(L"D8C0B590-65EC-42F7-903F-8ED7C1B3D629")]
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
public interface class IVsFireUpdateSolutionEvents
[<GuidAttribute("D8C0B590-65EC-42F7-903F-8ED7C1B3D629")>]
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
type IVsFireUpdateSolutionEvents = interface end
public interface IVsFireUpdateSolutionEvents
The IVsFireUpdateSolutionEvents type exposes the following members.
Methods
Name | Description | |
---|---|---|
FireOnActiveProjectCfgChange | Fires when the active project configuration changes. | |
FireOnActiveProjectCfgChangeBatchBegin | Fires when a batch change to the active project configuration begins. | |
FireOnActiveProjectCfgChangeBatchEnd | Fires when the batch active project configuration change ends. |
Top