Hello,
I have visual studio web project, which uses framwork 4.0 (need some json functions and mcv4).
Compile is fine in Visual Studio environment, but when I compile via AX, I see messages of lower framework
( CS0234: The type or namespace name 'Json' does not exist in the namespace 'System.Runtime.Serialization' (are you missing an assembly reference?) - that's for using System.Runtime.Serialization.json;
Even for framework 3.5 (I remark this line), I got another message, for using System.Web.Optimization.
I don't know why, but I succeeded compiling it before with no problem.
I have two project. now is web application, and one is library.
Both are on AOT.
When I open the Visual studio C# application, the library is also opening,
When I open the Visual studio C# library, the library is opening on framework 3.5, but when I look on the references, I see that there are from framework 2.0.
I change the framework to 4.0, and I see I need to add the project to AOT - I did that, recompile CIL (incremental), but still cannot compile the project using the Visual studio files (I got the same errors).
CS0234: The type or namespace name 'Optimization' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)
Thanks :)