6

We are using Azure with Sitecore 8.0. I want to remove few config files(for e.g-all config files under ListManagement folder) which is already deployed in CD server. How to delete/disable config files under ListManagement folder using azure deployment?

2 Answers 2

3

In your System area of the master DB you should have items in roughly this location:

/sitecore/system/Modules/Azure/<Environment>/<Location>/<Farm>/<WebRole>/<AzureDeployment> 

based on the template

/sitecore/templates/Azure/Deployment/Azure Deployment 

On the item, go to the Excludes section. To exclude specific files use the Deployment Type Exclude Files or Exclude Files fields e.g:

App_Config\ListManagement\Sitecore.ListManagement.config; 

Or to exclude an entire directory use Deployment Type Exclude Directories or Exclude Directories e.g.:

App_Config\ListManagement; 
3
  • Thank you for responding. Just reconfirming that this modification will remove all configuration related to List Management which are currently merged in CD server Commented Oct 26, 2016 at 11:26
  • See my edits above. I found there are other fields for excluding whole directories which is probably what you want to use (I'm not 100% sure that Exclude Files supports wildcards). Commented Oct 26, 2016 at 11:36
  • 1
    Thanks. We tried "Deployment Type Exclude Directories" using App_Config\ListManagement; and it worked :) Commented Oct 26, 2016 at 12:47
3

We removed the List Management configuration by adding all List Management specific .config files to our project and replacing the content of the config files with the following:

<configuration> <sitecore> </sitecore> </configuration> 
0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.