Поделиться через


Файлы Feature.xml

Область применения: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

В файле Feature.xml элемент Feature определяет компонент и указывает расположение сборок, файлов, зависимостей или свойств, его поддерживающих.

Сведения о создании и реализации файлов Feature.xml см. в разделе Использование компонентов в SharePoint Foundation.

Сведения об обновлении компонента см. в разделе Обновление компонентов.

Пример

В следующем примере показано использование файла Feature.xml для указания зависимостей активаций, особых полей и относительных путей к файлам определения элементов.

    <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>

См. также