Forum Discussion
Add to PnP Provisioning template using CSOM
- Aug 04, 2017
OK, see the changes I've made below.
You should implement FindDocumentLibraries to get the document libraries in your site. I think you can either use list.RemoveExistingContentTypes or remove the existing Content Type through a ContentTypeBinding (both included in my code below).
In addition to everything required, you should also initialize the list variable further to reflect your existing Document Library's configuration to prevent undesired changes after applying your template.
var documentLibraries = FindDocumentLibraries(); var template = new ProvisioningTemplate(); foreach (var documentLibrary in documentLibraries) { var list = new ListInstance();
list.RemoveExistingContentTypes = true;
var listContentTypeToAdd = new ContentTypeBinding(); listContentTypeToAdd.Default = true; listContentTypeToAdd.ContentTypeId = "0x01010003860C260AF340CB8B30D74959AB0FC4" // Custom Document var listContentTypeToRemove = new ContentTypeBinding(); listContentTypeToRemove.Remove = true; listContentTypeToRemove.ContentTypeId = "0x0101"; // Document list.ContentTypeBindings.Add(listContentTypeToAdd); list.ContentTypeBindings.Add(listContentTypeToRemove); template.Lists.Add(list); }Hope this helps!
Something like below should work. You'd still have to initialize the objects to reflect your requirements and required values off course...
var template = new ProvisioningTemplate(); var list = new ListInstance(); var listContentTypeBinding = new ContentTypeBinding(); list.ContentTypeBindings.Add(listContentTypeBinding); template.Lists.Add(list);
- Paul QuirkAug 04, 2017Copper Contributor
Thanks. The specific bit I'm having trouble with is in the ContentTypeBinding how to define the ContentTypeId, whether it's the default one or whether the content type is to be removed.
The general aim is for a document library, I want to remove the Document content type and add a custom document content type. I have this done in Xml that works for any known document libraries in a site, but I'd like to be able to check what document libraries are in a site and then add them to the template while it's in memory so I can apply a standard configuration.
- paulpaschaAug 04, 2017Bronze Contributor
OK, see the changes I've made below.
You should implement FindDocumentLibraries to get the document libraries in your site. I think you can either use list.RemoveExistingContentTypes or remove the existing Content Type through a ContentTypeBinding (both included in my code below).
In addition to everything required, you should also initialize the list variable further to reflect your existing Document Library's configuration to prevent undesired changes after applying your template.
var documentLibraries = FindDocumentLibraries(); var template = new ProvisioningTemplate(); foreach (var documentLibrary in documentLibraries) { var list = new ListInstance();
list.RemoveExistingContentTypes = true;
var listContentTypeToAdd = new ContentTypeBinding(); listContentTypeToAdd.Default = true; listContentTypeToAdd.ContentTypeId = "0x01010003860C260AF340CB8B30D74959AB0FC4" // Custom Document var listContentTypeToRemove = new ContentTypeBinding(); listContentTypeToRemove.Remove = true; listContentTypeToRemove.ContentTypeId = "0x0101"; // Document list.ContentTypeBindings.Add(listContentTypeToAdd); list.ContentTypeBindings.Add(listContentTypeToRemove); template.Lists.Add(list); }Hope this helps!
- Paul QuirkAug 04, 2017Copper ContributorThat's awesome! Thanks.