Cannot find JavaScriptSerializer in .Net 4.0
Cannot find JavaScriptSerializer in .Net 4.0
Cannot find JavaScriptSerializer in .Net 4.0
Re: Cannot find JavaScriptSerializer in .Net 4.0
Check if you included the .net 4 version of `System.Web.Extensions` - there's a 3.5 version as well, but I don't think that one works.
These steps work for me:
- Create a new console application
- Change the target to .net 4 instead of Client Profile
- Add a reference to `System.Web.Extensions` (4.0)
- Have access to `JavaScriptSerializer` in Program.cs now
These steps work for me:
- Create a new console application
- Change the target to .net 4 instead of Client Profile
- Add a reference to `System.Web.Extensions` (4.0)
- Have access to `JavaScriptSerializer` in Program.cs now