i created a strongly typed view inside a class library project everything works fine i can add the @model myPoject.etc.etc intellisense is working fine i can use Html helpers etc.
But when i create the form for the type in the view i cannot use the "model" keyword inside my HtmlHelper like that (model => model.Name) and i cannnot use lambda exrpression it tells me:
"The features lambda expression is not available in c#2 use c#3 or greater version "
And when add the parameters to my TextBoxFor helpers it becomes underlined and it tells me
"A reference to type Func<> declares that it is defined in mscorlib , but it is missing ."
Ps: in advanced build settings i use c# 6 and am using vs 2015. and thank you.
to fix this problem i changed the app.config file like this: