PackageRegistrationAttribute::RegisterUsing Property

 

Gets or sets the method of registration.

Namespace:   Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)

public:
property RegistrationMethod RegisterUsing {
	RegistrationMethod get();
	void set(RegistrationMethod value);
}

The enumeration RegistrationMethod describes registration choices.

Enumeration Value

Description

Default

Should be used only by tools.

CodeBase

The path to the assembly should be stored in the registry and used to locate the assembly at runtime.

Assembly

The assembly should be in the GAC or in PrivateAssemblies.

The registration mode that is specified in the command line of RegPkg has precedence over the value of this property.

Return to top
Show: