What is an application manifest?

 Posted by Tripati_tutu on 3/11/2011 | Category: .NET Framework Interview questions | Views: 5372 | Points: 40
Answer:

The application manifest which gives information to the operating system, such as in which way the assembly should be deployed and will check whether administrative elevation is required or not.

This is processed before the .NET-managed hosting environment loads to the assembly.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Posted by: LethalCookie on: 4/28/2011 | Points: 10
An application manifest is an XML file that describes and identifies the shared and private side-by-side assemblies that an application should bind to at run time. These should be the same assembly versions that were used to test the application. Application manifests may also describe metadata for files that are private to the application.
msdn link : http://msdn.microsoft.com/en-us/library/aa374191%28v=vs.85%29.aspx

Login to post response