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
salesforce1#salesforce1# 

what is package.xml?

Hi

 

what is package.xml, and where it can be used and purpose.

 

Regards.

Ankit AroraAnkit Arora

It holds complete schema of your org (like custom object, standard object, custom fields etc etc..), here is the example

 

http://www.salesforce.com/us/developer/docs/api_meta/Content/manifest_samples.htm

 

You can get this from eclipse, and it is used for deployment:

 

http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_deploying_ant_deploy.htm

 

Thanks

Ankit Arora

Blog | Facebook | Blog Page

Sagar PareekSagar Pareek

The package.xml file, also known as the project manifest, is a control file that determines the set of metadata components
to retrieve or deploy in a project. In practice, it is much easier to use the Project Properties dialog to add or remove components
from a project—which modifies package.xml for you—but it is also possible to edit package.xml by hand.

You can get more info in this pdf : http://login.salesforce.com/help/doc/en/salesforce_ide_localization.pdf

 

Don't forget to give Kudos if this post helps you .