質問

I have created a delegate control and try to provision it to all new site collections. It is working now only for the web template "MySite".

How to make it possible to provision this feature for all web templates?

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <FeatureSiteTemplateAssociation Id="{464b78de-c14e-4c88-bd52-00136fc899f4}" TemplateName="SPSPERS#2" />
</Elements>
役に立ちましたか?

解決

Use GLOBAL as TemplateName.

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <FeatureSiteTemplateAssociation Id="{464b78de-c14e-4c88-bd52-00136fc899f4}" TemplateName="GLOBAL" />
</Elements>

See Feature/Site Template Association

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top