---
title: "What files are contained within the .xap file?"  
description: "What files are contained within the .xap file?"  
author: "AVADHESH PATEL"  
published: 2012-11-17  
updated: 2020-09-16  
canonical: https://www.mindstick.com/interview/1579/what-files-are-contained-within-the-xap-file  
category: "wpf"  
tags: ["wpf"]  
reading_time: 1 minute  

---

# What files are contained within the .xap file?

The **.xap file** contains an application manifest (AppManifest.xaml) file and all the necessary DLLs that are required by the application. The first DLL contained is the compiled version of your application and has the same name of your application. In my test, I created an application named "SilverlightApplication1", so the DLL is named "SilverlightApplication1.dll". The rest of the DLLs are the dependencies the application requires.

## Answers

### Answer by AVADHESH PATEL

The **.xap file** contains an application manifest (AppManifest.xaml) file and all the necessary DLLs that are required by the application. The first DLL contained is the compiled version of your application and has the same name of your application. In my test, I created an application named "SilverlightApplication1", so the DLL is named "SilverlightApplication1.dll". The rest of the DLLs are the dependencies the application requires.


---

Original Source: https://www.mindstick.com/interview/1579/what-files-are-contained-within-the-xap-file

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
