I am trying to run my application and it is showing an error like this..
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.
Answer :
You need to set webpages:Version appSettings with appropriate value. In your case it has to be 2.0.0.0... For this just go in Web config file and write / Change ....
<add key="webpages:Version" value="1.0.0.0"/>
to
<appSettings>
<add key="webpages:Version" value="2.0.0.0"/>
</appSettings>
Done :)
0 comments:
Post a Comment