Package.RegisterProjectFactory Method
Visual Studio 2010
Registers a project factory with Visual Studio.
Assembly: Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
| Exception | Condition |
|---|---|
| ArgumentNullException | factory is null. |
The RegisterProjectFactory method registers the given project factory with Visual Studio. To register a project factory for a package, perform the following steps:
Add a ProvideProjectFactoryAttribute to your package class.
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.
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.