silverlight 4, dynamically loading xap modules

后端 未结 4 936
无人共我
无人共我 2021-01-18 08:56

I know that it is possible to load xap modules dynamically using Prism or MEF framework. However, I\'d like not to use those frameworks; instead load my xap files manually.

4条回答
  •  再見小時候
    2021-01-18 09:28

    This is based on the asker's self-answer below, rather than the question.

    If you delete a project/module the output DLLs/XAP files do hang around. If you click the "show all files" button you will see some these left-over output files in your clientbin, bin and obj folders of related projects.

    alt text

    You can delete them individually from the project, or, when in doubt, search for all BIN and OBJ (e.g. using desktop explorer) and delete all those folders. The BIN/CLIENTBIN/OBJ folders will be recreated when needed (this the job that the "clean" option in Visual Studio should have done!)

    Hope this helps.

提交回复
热议问题