Compartir a través de


Package.RegisterProjectFactory Method

Registers a project factory with Visual Studio.

Namespace:  Microsoft.VisualStudio.Shell
Assemblies:   Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
  Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)

Syntax

'Declaración
Protected Sub RegisterProjectFactory ( _
    factory As IVsProjectFactory _
)
'Uso
Dim factory As IVsProjectFactory

Me.RegisterProjectFactory(factory)
protected void RegisterProjectFactory(
    IVsProjectFactory factory
)
protected:
void RegisterProjectFactory(
    IVsProjectFactory^ factory
)
member RegisterProjectFactory : 
        factory:IVsProjectFactory -> unit 
protected function RegisterProjectFactory(
    factory : IVsProjectFactory
)

Parameters

Exceptions

Exception Condition
ArgumentNullException

factory is null.

Remarks

The RegisterProjectFactory method registers the given project factory with Visual Studio. To register a project factory for a package, perform the following steps:

  1. Add a ProvideProjectFactoryAttribute to your package class.

  2. Override the Initialize method. Call RegisterProjectFactory in this method and pass the instance of your project factory. Be sure to call the base class Initialize method.

Unregistration of project factories automatically happens when the package is disposed. If the project factory object implements IDisposable, its Dispose method is called after the factory has been unregistered with Visual Studio.

.NET Framework Security

See Also

Reference

Package Class

Package Members

Microsoft.VisualStudio.Shell Namespace