BuildProvider.ReferencedAssemblies Property

Definition

Represents the assemblies to compile with the source generated by the build provider.

protected:
 property System::Collections::ICollection ^ ReferencedAssemblies { System::Collections::ICollection ^ get(); };
protected System.Collections.ICollection ReferencedAssemblies { get; }
member this.ReferencedAssemblies : System.Collections.ICollection
Protected ReadOnly Property ReferencedAssemblies As ICollection

Property Value

A read-only collection of assemblies that can be referenced by the source code generated by the build provider.

Remarks

The ASP.NET build environment initializes the collection of assemblies that are available for reference by the build provider. The source code generated by a build provider can use public types in the referenced assemblies. The referenced assembly collection consists of other assemblies built in the ASP.NET application, and assemblies listed in the assemblies element in the configuration file.

If the build provider generates source code that references additional assemblies, the build provider adds the additional assemblies using the AddAssemblyReference method. The ASP.NET build environment resolves external types during assembly compilation using both the referenced assemblies added by build providers and the default collection of assemblies available for reference.

The ReferencedAssemblies collection does not include assemblies that are added for reference by other build providers through the AddAssemblyReference method.

Applies to

See also