Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RazorEngine templates in VS 2015 - Feature 'implicitly typed local variable' is not available in c# 2

I get the below error when I open RazorEngine cshtml template file in my VS 2015 project.

Feature 'implicitly typed local variable' is not available in c# 2. Please use language version 3 or greater.

The template compiles correctly, just the intellisense is broken.

The project is set up to use .net 4.5 while building. The app is also not an ASP.Net, but a desktop one.

The intellisense also worked fine in VS 2013. The issue appeared after the upgrade to VS 2015.

Does anyone had similar issue and could advice how to resolve this?

like image 388
A.D. Avatar asked Mar 20 '17 10:03

A.D.


1 Answers

I was able to fix the intellisense by adding these lines to the app.config file. Restart Visual Studio after making the change.

<system.web>
    <compilation debug="false" targetFramework="4.5.1" />
</system.web>
like image 89
Britton Avatar answered Oct 15 '22 09:10

Britton