Conflicting versions of ASP.NET Web Pages detected: specified version is "1.0.0.0", but the version in bin is "2.0.0.0" -


this error appears after updating asp.net web helpers library today version 2.0 apparently released today. updated mistake, resolve now, if possible.

conflicting versions of asp.net web pages detected: specified version "1.0.0.0", version in bin "2.0.0.0". continue, remove files application's bin directory or remove version specification in web.config.

apparently problem in web.config:

<add key="webpages:version" value="1.0.0.0" /> 

does have information asp.net web helpers library package 2.0? unable find release notes. nothing on nuget site.

from conflicting versions of asp.net web pages detected: need set webpages:version appsettings appropriate value. in case has 2.0.0.0

<appsettings>     <add key="webpages:version" value="2.0.0.0"/> </appsettings> 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -