What is involved in converting a Silverlight application to run "Out of Browser"? We have an established application and would like to know what kinds of things we need to be aware of if we decide to make this change.

link|improve this question

64% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Have a look at this http://msdn.microsoft.com/en-us/library/dd550721(v=VS.95).aspx1

to see what you can and can't do and other features

link|improve this answer
feedback

Two main things that I experienced first hand about OOB

  • If you have an normal silverlight(non-OOB) app now, you will have to change your solution settings and recompile to get OOB options.
  • The updates to your silverlight app are not very transparent (involves restart of the client at the very least)
link|improve this answer
-yeah. the update process is a bummer but out-of browser concept is very refreshing. – TheOtherGuy Mar 10 '11 at 2:17
One more thing to add here is that OOB install must be initiated by the client action and you cant force it. – Lav Mar 10 '11 at 15:04
feedback

According to this article, you only need to add a <Deployment.OutOfBrowserSettings> element to your manifest.

To enable this feature you only need to open the AppManifest.xml file which can be found in the Properties folder and add some settings as follows:

<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    EntryPointAssembly="TaskList" 
    EntryPointType="TaskList.App">  
  <Deployment.Parts> 
  </Deployment.Parts> 
  <Deployment.OutOfBrowserSettings> 
    <OutOfBrowserSettings  
      ShortName="Task List">  
      <OutOfBrowserSettings.WindowSettings> 
        <WindowSettings Title="Offline Task List" /> 
      </OutOfBrowserSettings.WindowSettings>

      <OutOfBrowserSettings.Blurb> 
        Allows saving your tasks offline  
      </OutOfBrowserSettings.Blurb> 
    </OutOfBrowserSettings> 
  </Deployment.OutOfBrowserSettings> 
</Deployment>

See also

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.