Good day. Can you tell me how to deploy a Silverlight application? What to copy to the root folder.? It turns out that the project has two solutions: one web service and the client part itself. In which hierarchy and what to transfer?
2 answers
In most cases, the deployment of Silverlight itself is reduced to copying the XAP archive and HTML pages to the place on the web server from where they will be sent.
And it is also necessary that the web server correctly work out the MIME types for Silverlight (usually it is already configured by the hoster):
- .xaml application / xaml + xml
- .xap application / x-silverlight-app
- .xbap application / x-ms-xbap
|
There is a guide: deployment and localization of Silverlight .
|