user1034912
user1034912

Reputation: 2267

Why are there so many files in the Silverlight Bin when I build my project?

There's just so many files. The XAP file, DLL file, HTML file, PDB File, and then I have all these folders with 2 letter words where inside each folders are 2 dll files.

What do these files (in general) represent?

Thanks

Upvotes: 1

Views: 144

Answers (1)

ose
ose

Reputation: 4075

The XAP file represents the Silverlight application (Silverlight Application Package, the X likely refers to the XAML base of Silverlight).

DLL files are your application's dependencies, some of which are created to facilitate serialization and localization.

Because Silverlight is browser-hosted, it requires an HTML page to host the control when you debug it.

The PDB file contains the "program database" which includes all the metadata Visual Studio uses to provide those nice descriptive tooltips when you mouse over a variable in the IDE.

Folders with two letters represent country codes and are used for localization.

Upvotes: 2

Related Questions