Dec 27 2008
Inside Silverlight 2: Part 2
Tweet Inside AppManifest.xaml The file contains the following: <Deployment xmlns=" http://schemas.microsoft.com/client/2007/deployment" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" EntryPointAssembly="HelloSilverlightApp" EntryPointType="HelloSilverlightApp.App" RuntimeVersion="2.0.31005.0"> <Deployment.Parts> <AssemblyPart x:Name="HelloSilverlightApp" Source="HelloSilverlightApp.dll" /> </Deployment.Parts> </Deployment> The manifest specifies the entry point assembly which should be loaded by the Silverlight host and within the assembly it requires a type derived from System.Windows.Application for start executing the application. Here, the [...]