Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 to version 2.0 which was apparently released today. I updated by mistake, however would like to resolve this now, if possible.

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". To continue, remove files from the application's bin directory or remove the version specification in web.config.

Apparently this is the problem in web.config:

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

Does anyone even have any information about this ASP.NET Web Helpers Library package 2.0? I was unable to find release notes. Nothing on Nuget site.

like image 307
mare Avatar asked Jun 05 '12 11:06

mare


2 Answers

From Conflicting versions of ASP.NET Web Pages detected: You need to set webpages:Version appSettings with appropriate value. In your case it has to be 2.0.0.0

<appSettings>
    <add key="webpages:Version" value="2.0.0.0"/>
</appSettings>
like image 95
Jeroen K Avatar answered Nov 06 '22 22:11

Jeroen K


It seems to be something related to the new release (v.2.0) of the Microsoft.Web.Helpers, released on Jun/05/2012.

To avoid this problem, first I uninstalled the new version (v.2.0):

PM> Uninstall-Package microsoft-web-helpers

And adopted the following command to install the stable older version:

PM> Install-Package microsoft-web-helpers -Version 1.15

I believe (and wish) this is something that will be corrected (or officially commented) soon...

UPDATE

If by any reason you need the older System.Web.WebPages.dll (which in my case was overwritten by a new version and didn't show up in the "Add Reference" box), it's located on:

C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\Assemblies

like image 8
Tuco Avatar answered Nov 06 '22 23:11

Tuco