This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Pleast note that this code should be used as example code only, it is not properly tested. | |
// | |
public class DeploymentActionImportTaxonomy : DeploymentAction<bool> | |
{ | |
public enum ImportTaxonomyMode | |
{ | |
DeleteAndRecreate, | |
OnlyAddNew | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DeploymentActionCreateSiteCollection : DeploymentAction<bool> | |
{ | |
public DeploymentActionCreateSiteCollection(ClientContext adminTenantContext, IDeploymentActionCreateSiteCollectionArgs args, string webTemplate) | |
: base(adminTenantContext, "Checking for existing site collection", args.Verbose) | |
{ | |
this.CommandLineArguments = args; | |
this.WebTemplate = webTemplate; | |
} | |
protected IDeploymentActionCreateSiteCollectionArgs CommandLineArguments { get; set; } |
NewerOlder