Compartir a través de


Archivos Feature.xml

Última modificación: martes, 06 de abril de 2010

Hace referencia a: SharePoint Foundation 2010

En un archivoFeature.xml, el elemento Feature define una característica y especifica la ubicación de los ensamblados, los archivos, las dependencias o las propiedades que admiten la característica.

Feature

  ActivationDependencies

    ActivationDependency

  ElementManifests

    ElementFile

    ElementManifest

  Properties

    Property

  Elemento UpgradeActions (Feature)

    Elemento AddContentTypeField (Característica)

    Elemento ApplyElementManifests (Característica)

      Elemento ElementFile (Característica)

      Elemento ElementManifest (Característica)

    Elemento CustomUpgradeAction (Feature)

      Elemento Parameters (Feature)

        Elemento Parameter (Feature)

    Elemento MapFile (Característica)

    Elemento VersionRange (Feature)

      Elemento AddContentTypeField (Característica)

      Elemento ApplyElementManifests (Característica)

      Elemento CustomUpgradeAction (Feature)

      Elemento MapFile (Característica)

Para obtener más información acerca de dónde crear los archivos Feature.xml y cómo implementarlos, vea Uso de características. Para obtener información sobre cómo actualizar una característica, vea Actualización de características.

Ejemplo

El siguiente ejemplo muestra cómo usar un archivo Feature.xml para especificar dependencias de activación, campos especiales y rutas de acceso relativas a archivos de definición de elementos.

<Feature 
  Id="11111111-1111-1111-1111-11111111111" 
  Title="Location Services"
  Description="This Feature contains lists and parts that let you link location data to your customer lists."
  Scope="Web">
  <ActivationDependencies>
    <ActivationDependency
      FeatureId="11111111-1111-1111-1111-111111111111" />
  </ActivationDependencies>
  <ElementManifests>
    <ElementManifest 
      Location="Location\LocationPart.xml"/>
    <ElementManifest 
      Location="CustomerLocation\CustomerLocationList.xml"/>
    <ElementFile 
      Location="test.aspx"/>
  </ElementManifests>
  <Properties>
    <Property
      Key="Color"
      Value="Blue"/>
    <Property
      Key="Shape"
      Value="Triangle"/>
  </Properties> 
</Feature>

Vea también

Conceptos

Uso de características