remove Element for buildProviders for compilation (ASP.NET Settings Schema)
Removes a reference to an inherited build provider from the collection.
This element is new in the .NET Framework version 2.0.
<remove
extension="custom resource file extension"
/>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute | Description |
---|---|
extension |
Required String attribute. Defines the custom resource file extension to remove from the collection. The default is an empty string (""). |
Child Elements
None.
Parent Elements
Element | Description |
---|---|
configuration |
Specifies the required root element in every configuration file that is used by the common language runtime and the .NET Framework applications. |
system.web |
Specifies the root element for the ASP.NET configuration section. |
compilation |
Configures all compilation settings that ASP.NET uses to compile applications. |
buildProviders |
Defines a collection of build providers that are used to compile custom resource files. |
Remarks
The remove element removes a reference to an inherited build provider from the collection.
The buildProviders element defines a collection of build providers that are used to compile custom resource files of a particular file type and to generate code during compilation.
Example
The following code example demonstrates how to remove a build provider from the collection.
<configuration>
<system.web>
<compilation>
<buildProviders>
<remove
extension=".mafx" />
</buildProviders>
</compilation>
</system.web>
</configuration>
Element Information
Configuration section handler |
|
Configuration member |
|
Configurable locations |
Machine.config Root-level Web.config Application-level Web.config Virtual or physical directory–level Web.config |
Requirements |
Microsoft Internet Information Services (IIS) version 5.0, 5.1, or 6.0 The .NET Framework version 2.0 Microsoft Visual Studio 2003 or Visual Studio 2005 |
See Also
Tasks
How to: Configure Specific Directories Using Location Settings
How to: Lock ASP.NET Configuration Settings
Reference
buildProviders Element for compilation (ASP.NET Settings Schema)
clear Element for buildProviders for compilation (ASP.NET Settings Schema)
add Element for buildProviders for compilation (ASP.NET Settings Schema)
configuration Element (General Settings Schema)
system.web Element (ASP.NET Settings Schema)
compilation Element (ASP.NET Settings Schema)
System.Configuration
System.Web.Configuration
CompilationSection
Remove
Concepts
ASP.NET Compilation Model
ASP.NET Web Page Code Model
ASP.NET Web Site Precompilation Overview
ASP.NET Configuration File Hierarchy and Inheritance
Securing ASP.NET Configuration
ASP.NET Configuration Scenarios
Other Resources
General Configuration Settings (ASP.NET)
ASP.NET Configuration Settings
Configuring ASP.NET Applications
ASP.NET Configuration Files
ASP.NET Configuration API