Arquivos Feature.xml
Aplica-se a: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Em um Feature.xml, o elemento Feature define um recurso e especifica o local de assemblies, arquivos, dependências ou propriedades que dão suporte ao Recurso.
Para obter informações sobre onde criar e como implementar arquivos Feature.xml, consulte Usando recursos no SharePoint Foundation.
Para obter informações sobre como atualizar um recurso, consulte Atualizando recursos.
Exemplo
O exemplo a seguir mostra como usar um arquivo Feature.xml para especificar dependências de ativação, campos especiais e caminhos relativos para arquivos de definição de elemento.
<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>