AssemblyBuilder.CodeDomProvider Property

Definition

Gets the compiler used to build source code into an assembly.

public:
 property System::CodeDom::Compiler::CodeDomProvider ^ CodeDomProvider { System::CodeDom::Compiler::CodeDomProvider ^ get(); };
public System.CodeDom.Compiler.CodeDomProvider CodeDomProvider { get; }
member this.CodeDomProvider : System.CodeDom.Compiler.CodeDomProvider
Public ReadOnly Property CodeDomProvider As CodeDomProvider

Property Value

A read-only CodeDomProvider implementation used for compiling source code contributed by each build provider into an assembly.

Remarks

The CodeDomProvider property indicates the System.CodeDom.Compiler.CodeDomProvider implementation that the ASP.NET build environment uses to compile an assembly from the source code contributed by each BuildProvider implementation.

The ASP.NET build environment determines the language and compiler required by files within the project, based on the BuildProvider.CodeCompilerType property. The build environment groups files based on their compiler settings and builds an assembly from files that require the same compiler.

Applies to

See also