I have an ASP.NET application that includes a number of plugins written in Silverlight. How can I find out the .NET assembly versions of the Silverlight applications from within the web application (not the Silverlight plugin), so that I can list the installed plugins in, for example, a Help | About box?
I have an ASP.NET application that includes a number of plugins written in Silverlight.
Share
A XAP file is a ZIP-formatted file. You can open it with Winzip, extract the assemblies, and look at their version numbers. This should all be possible using .NET zip library and Reflection within ASP.NET.