I’m trying to implement an RssResult that derives from ActionResult in ASP.NET MVC 1 & .NET 3.5, following this question. (There are some limitation on my company regarding the asp.net mvc framework, don’t ask me why I’m still using it :)) Anyway, I couldn’t find System.ServiceModel.dll in C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5 (it’s in v3.0 and also in v4.0).
Am I missing something?
Thank you very much.
If you have .NET 3.5 installed, the
System.ServiceModel(V3.0.0.0) assembly should be in the GAC. Reference it from there and you will see the System.ServiceModel.Syndication namespace (you must have .NET 3.5 installed, the namespace is not available in .NET 3.0).