My-Knowledge-Share
My thoughts, my readings, my writings shared with the community. (Current Interest...BizTalk,Silverlight, VS.NET 2008, SQL 2008...). Incase you need my thoughts on some subject or would like to engage with me, you can contact me at - nevilledubash@gmail.com
Monday, June 9, 2008
Silverlight 2.0 beta 2 Released
Visit the Silverlight SDK blog for whats new in beta 2?, Breaking changes from beta 1 to beta 2, etc.
Other downloads:
- Download Silverlight Tools Beta 2 for Visual Studio 2008 (silverlight_chainer.exe) (Includes: Silverlight 2 Beta 2, Silverlight 2 SDK Beta 2, KB950630 for VS2008 RTM / KB950632 for VS2008 SP1 Beta, Silverlight Tools Beta 2 for Visual Studio 2008
- Download Silverlight 2 Beta 2 Documentation
- Also, download recent release of Expression Blend 2.5 June 2008 Preview
Regards, Neville (http://nevilledubash.blogspot.com/)
Friday, June 6, 2008
Integrate SharePoint with Silverlight
Visit the site for more details http://www.ssblueprints.net/sharepoint/.
Regards, Neville (http://nevilledubash.blogspot.com/)
Monday, June 2, 2008
Send an e-mail from a Silverlight Application
Article link
Regards, Neville (http://nevilledubash.blogspot.com/)
Thursday, March 20, 2008
Opening a Silverlight 1.1 project in VS2008 after installing Silverlight 2.0
Opening a Silverlight 1.1 project in VS2008 after installing Silverlight 2.0
Below are some of the steps followed by me to resolve this issue:
- Open the Silverllight 1.1 solution file
- Scroll down until you find the Import Project= element that points to the targets file.
All you should have to do is replace "VisualStudio9.0\Silverlight\"
with
"Silverlight\v2.0\"
Save the Solution file and then reload the project. - Next steps are to get the right APIs referenced. You'll see that the old ones are no longer valid (the warning icon). You can delete them. In there place you need to references to: System [in C:\Program Files\Microsoft Silverlight\2.0.30226.2]
System.Core [in C:\Program Files\Microsoft Silverlight\2.0.30226.2]
System.Windows [in C:\Program Files\Microsoft Silverlight\2.0.30226.2]
System.Windows.Browser [in C:\Program Files\Microsoft Silverlight\2.0.30226.2]
System.Windows.Controls [in C:\Program Files\Microsoft SDKs\Silverlight\v2.0\Libraries\Client]
System.Windows.Controls.Extended [in C:\Program Files\Microsoft SDKs\Silverlight\v2.0\Libraries\Client]
System.XML [in C:\Program Files\Microsoft Silverlight\2.0.30226.2]
The above are the steps the help you open the Silverlight 1.1 project after installing Silverlight 2.0.
Other deprecated features will still have to manually migrated.
Regards, Neville (http://nevilledubash.blogspot.com/)