Home

Definition of manifest

An XML document that describes requirements for an application. The application manifest can be a separate file or embedded in the application’s .exe file.

Computer Science

Other definitions of manifest

An integral part of every assembly that renders the assembly selfdescribing. The assembly manifest contains the assembly’s metadata. The manifest establishes the assembly identity, specifies the files that make up the assembly implementation, specifies the types and resources that make up the assembly, itemizes the compile-time dependencies on other assemblies, and specifies the set of permissions required for the assembly to run properly. This information is used at run time to resolve references, enforce version binding policy, and validate the integrity of loaded assemblies. The self-describing nature of assemblies also helps makes zero-impact install and XCOPY deployment feasible.

Computer Science