function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Lily BluntLily Blunt 

Multi-Select Picklist using ANT Migration Tool

Is it possible to migrate a custom multi-select picklist using Salesforce Migration Tool?   If yes, how do you place it in the Package.xml?   Is there any other special consideration / care to be taken?
Ketankumar PatelKetankumar Patel
It would be the same as regular custom field deployment. Your Package.xml should look like this.
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <members>custom_object__c.custom_Multi_Select_Picklist_Field_API_Name__c</members>
        <name>CustomField</name>
    </types>
    <version>33.0</version>
</Package>