Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the System.Web.Silverlight reference needed?

Tags:

silverlight

We are just getting into Silverlight development at my workplace. Somehow two of our dev machines have been configured differently. I noticed that one of them has access to System.Web.Silverlight in the reference list, and the other doesn't. Both can create and run Silverlight applications from scratch.

What does System.Web.Silverlight do? Is it a legacy reference? If we need it, where do we get it from?

like image 935
Craig Schwarze Avatar asked Jan 19 '10 22:01

Craig Schwarze


1 Answers

This dll provided the ASP.NET Silverlight server control which was designed to make it easier to create the object tag needed to describe the silverlight plug-in.

This server-side control was removed as of Silverlight 3, you are now expected to build the object tag yourself.

So yes its legacy so you don't need it.

like image 80
AnthonyWJones Avatar answered Sep 28 '22 00:09

AnthonyWJones