Thanks for your response. I'm in VS 2005 which I guess doesn't have a target framework option and doesn't seem to be "smart" enough to limit the referenced assemblies to .net 2.0.
The problem was that during development, I somehow added a new web custom control or something like that instead of a new class. That added references to System.Design, System.Web, System.Web.Extensions and System.Web.Extensions.Design. I deleted the file immediately but the references remained there w/out me knowing they were added.
The strange part is that even with these references I didn't have a reference to System.Web.Abstractions in my application manifest after building (which makes sense because I don't even have the assembly). That reference showed up when another developer built and published the application. After removing the references that I accidently added, he built the project and the reference to System.Web.Abstractions was also gone so I guess it was a dependency of one of the other assemblies. - Marked As Answer by_xr280xr_ Tuesday, August 18, 2009 11:19 PM
-
|