This post originated from an RSS feed registered with .NET Buzz
by Sascha Corti.
Original Post: Updting my Reference Silverlight Apps to RC
Feed Title: Console.WriteLine("Hello World");
Feed URL: http://www.corti.com/WebLogSascha/blogxbrowsing.asmx/GetRss?
Feed Description: A technology blog with a focus on the .NET framework, the Visual Studio .NET tools and the Windows server platform with of course the normal weblog-noise on what's happening in the industry and reviews of the latest geeky gadgets.
I updated my reference Silverlight application from Silverlight 1.0 Beta (April) to Silverlight 1.0 RC and only needed two minor modifications for it to work again:
"Default.htm.js" needed a few modifications as the namespace "Sys.Silverlight" moved to "Silverlight" and event handlers in Silverlight XAML resources don't support the notation "event="javascript:handler"" anymore - which required me to simply remove the "javascript:". Then, the "Silverlight.js" script that is part of every Silverlight application, making sure the Silverlight runtime is installed on the target system, needed to be replaced. That was all.